diff options
author | Liam <byteslice@airmail.cc> | 2023-05-31 12:42:34 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2024-02-11 13:41:13 -0500 |
commit | de8a62393249e944f68eb3e73330537af02a6b0b (patch) | |
tree | 7642555fbfb8370edb74496e819e3bbfbce45031 /src/video_core/surface.h | |
parent | 865a0186b6db97afed21db6ad924c9968b437265 (diff) |
texture_cache: avoid overestimation of ASTC texture sizes
Diffstat (limited to 'src/video_core/surface.h')
-rw-r--r-- | src/video_core/surface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/surface.h b/src/video_core/surface.h index a5e8e2f62..ec9cd2fbf 100644 --- a/src/video_core/surface.h +++ b/src/video_core/surface.h @@ -517,6 +517,6 @@ size_t PixelComponentSizeBitsInteger(PixelFormat format); std::pair<u32, u32> GetASTCBlockSize(PixelFormat format); -u64 EstimatedDecompressedSize(u64 base_size, PixelFormat format); +u64 TranscodedAstcSize(u64 base_size, PixelFormat format); } // namespace VideoCore::Surface |