diff options
| author | 2023-02-14 11:13:47 -0500 | |
|---|---|---|
| committer | 2023-02-14 12:35:39 -0500 | |
| commit | 683019878fc939b418a65e1c5d84b066596d7655 (patch) | |
| tree | 6b2a2e8ea34cb00a3fccf3613a52475550997035 /src/video_core/surface.cpp | |
| parent | apply clang-format (diff) | |
| download | yuzu-683019878fc939b418a65e1c5d84b066596d7655.tar.gz yuzu-683019878fc939b418a65e1c5d84b066596d7655.tar.xz yuzu-683019878fc939b418a65e1c5d84b066596d7655.zip | |
remove static from pointer sized or smaller types for aesthetics, change constexpr static to static constexpr for consistency
Signed-off-by: arades79 <scravers@protonmail.com>
Diffstat (limited to 'src/video_core/surface.cpp')
| -rw-r--r-- | src/video_core/surface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/surface.cpp b/src/video_core/surface.cpp index e69855cad..1a76d4178 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 | ||
| 373 | u64 EstimatedDecompressedSize(u64 base_size, PixelFormat format) { | 373 | u64 EstimatedDecompressedSize(u64 base_size, PixelFormat format) { |
| 374 | constexpr static u64 RGBA8_PIXEL_SIZE = 4; | 374 | constexpr 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); |