diff options
author | Fernando S <fsahmkow27@gmail.com> | 2023-10-17 14:36:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-17 14:36:36 +0200 |
commit | 2244b613cf804f4af8ff7546b5191d5a62ffb466 (patch) | |
tree | d18774a7c6a2e02e46d3fc83998d04bb0b4f362f | |
parent | service: acc: Implement functions needed for profile select (#11653) (diff) | |
parent | brings back the removed If statement and adds the num_level test (diff) | |
download | yuzu-2244b613cf804f4af8ff7546b5191d5a62ffb466.tar yuzu-2244b613cf804f4af8ff7546b5191d5a62ffb466.tar.gz yuzu-2244b613cf804f4af8ff7546b5191d5a62ffb466.tar.bz2 yuzu-2244b613cf804f4af8ff7546b5191d5a62ffb466.tar.lz yuzu-2244b613cf804f4af8ff7546b5191d5a62ffb466.tar.xz yuzu-2244b613cf804f4af8ff7546b5191d5a62ffb466.tar.zst yuzu-2244b613cf804f4af8ff7546b5191d5a62ffb466.zip |
-rw-r--r-- | src/video_core/texture_cache/util.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/video_core/texture_cache/util.cpp b/src/video_core/texture_cache/util.cpp index 8151cabf0..15596c925 100644 --- a/src/video_core/texture_cache/util.cpp +++ b/src/video_core/texture_cache/util.cpp @@ -167,6 +167,13 @@ template <u32 GOB_EXTENT> } [[nodiscard]] constexpr Extent3D TileShift(const LevelInfo& info, u32 level) { + if (level == 0 && info.num_levels == 1) { + return Extent3D{ + .width = info.block.width, + .height = info.block.height, + .depth = info.block.depth, + }; + } const Extent3D blocks = NumLevelBlocks(info, level); return Extent3D{ .width = AdjustTileSize(info.block.width, GOB_SIZE_X, blocks.width), @@ -1293,9 +1300,9 @@ u32 MapSizeBytes(const ImageBase& image) { static_assert(CalculateLevelSize(LevelInfo{{1920, 1080, 1}, {0, 2, 0}, {1, 1}, 2, 0, 1}, 0) == 0x7f8000); -static_assert(CalculateLevelSize(LevelInfo{{32, 32, 1}, {0, 0, 4}, {1, 1}, 4, 0, 1}, 0) == 0x4000); +static_assert(CalculateLevelSize(LevelInfo{{32, 32, 1}, {0, 0, 4}, {1, 1}, 4, 0, 1}, 0) == 0x40000); -static_assert(CalculateLevelSize(LevelInfo{{128, 8, 1}, {0, 4, 0}, {1, 1}, 4, 0, 1}, 0) == 0x4000); +static_assert(CalculateLevelSize(LevelInfo{{128, 8, 1}, {0, 4, 0}, {1, 1}, 4, 0, 1}, 0) == 0x40000); static_assert(CalculateLevelOffset(PixelFormat::R8_SINT, {1920, 1080, 1}, {0, 2, 0}, 0, 7) == 0x2afc00); |