summaryrefslogtreecommitdiff
path: root/src/video_core/surface.cpp
diff options
context:
space:
mode:
authorGravatar arades792023-02-11 13:28:03 -0500
committerGravatar arades792023-02-14 12:33:11 -0500
commit45e13b03f372230dbf780f3fa87dd88f388af605 (patch)
tree555593e7e5016b6ba2a777d7417ada244abce458 /src/video_core/surface.cpp
parentMerge pull request #9795 from Kelebek1/biquad_fix (diff)
downloadyuzu-45e13b03f372230dbf780f3fa87dd88f388af605.tar.gz
yuzu-45e13b03f372230dbf780f3fa87dd88f388af605.tar.xz
yuzu-45e13b03f372230dbf780f3fa87dd88f388af605.zip
add static lifetime to constexpr values to force compile time evaluation where possible
Signed-off-by: arades79 <scravers@protonmail.com>
Diffstat (limited to 'src/video_core/surface.cpp')
-rw-r--r--src/video_core/surface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/surface.cpp b/src/video_core/surface.cpp
index 1a76d4178..e69855cad 100644
--- a/src/video_core/surface.cpp
+++ b/src/video_core/surface.cpp
@@ -371,7 +371,7 @@ std::pair<u32, u32> GetASTCBlockSize(PixelFormat format) {
371} 371}
372 372
373u64 EstimatedDecompressedSize(u64 base_size, PixelFormat format) { 373u64 EstimatedDecompressedSize(u64 base_size, PixelFormat format) {
374 constexpr u64 RGBA8_PIXEL_SIZE = 4; 374 constexpr static u64 RGBA8_PIXEL_SIZE = 4;
375 const u64 base_block_size = static_cast<u64>(DefaultBlockWidth(format)) * 375 const u64 base_block_size = static_cast<u64>(DefaultBlockWidth(format)) *
376 static_cast<u64>(DefaultBlockHeight(format)) * RGBA8_PIXEL_SIZE; 376 static_cast<u64>(DefaultBlockHeight(format)) * RGBA8_PIXEL_SIZE;
377 return (base_size * base_block_size) / BytesPerBlock(format); 377 return (base_size * base_block_size) / BytesPerBlock(format);