From 97b6405a17276b7497788ef924466cc24bda9f8e Mon Sep 17 00:00:00 2001 From: FernandoS27 Date: Fri, 12 Oct 2018 14:21:53 -0400 Subject: Implemented helper function to correctly calculate a texture's size --- src/video_core/textures/decoders.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/video_core/textures/decoders.h') diff --git a/src/video_core/textures/decoders.h b/src/video_core/textures/decoders.h index 1f7b731be..234d250af 100644 --- a/src/video_core/textures/decoders.h +++ b/src/video_core/textures/decoders.h @@ -32,4 +32,10 @@ void CopySwizzledData(u32 width, u32 height, u32 bytes_per_pixel, u32 out_bytes_ std::vector DecodeTexture(const std::vector& texture_data, TextureFormat format, u32 width, u32 height); +/** + * This function calculates the correct size of a texture depending if it's tiled or not. + */ +std::size_t CalculateSize(bool tiled, u32 bytes_per_pixel, u32 width, u32 height, u32 depth, + u32 block_height, u32 block_depth); + } // namespace Tegra::Texture -- cgit v1.2.3