diff options
author | bunnei <bunneidev@gmail.com> | 2021-08-31 00:24:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-31 00:24:04 +0200 |
commit | ec19d9594f0849692505091c7d39e035e4de6ce8 (patch) | |
tree | f018e0fb01410345c827318a21225e35ac0861d8 /src/video_core/textures | |
parent | Merge pull request #6905 from Morph1984/nifm-misc (diff) | |
parent | vk_blit_screen: Fix non-accelerated texture size calculation (diff) | |
download | yuzu-ec19d9594f0849692505091c7d39e035e4de6ce8.tar yuzu-ec19d9594f0849692505091c7d39e035e4de6ce8.tar.gz yuzu-ec19d9594f0849692505091c7d39e035e4de6ce8.tar.bz2 yuzu-ec19d9594f0849692505091c7d39e035e4de6ce8.tar.lz yuzu-ec19d9594f0849692505091c7d39e035e4de6ce8.tar.xz yuzu-ec19d9594f0849692505091c7d39e035e4de6ce8.tar.zst yuzu-ec19d9594f0849692505091c7d39e035e4de6ce8.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/textures/decoders.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp index c010b9353..24e943e4c 100644 --- a/src/video_core/textures/decoders.cpp +++ b/src/video_core/textures/decoders.cpp @@ -63,14 +63,6 @@ void SwizzleImpl(std::span<u8> output, std::span<const u8> input, u32 width, u32 const u32 unswizzled_offset = slice * pitch * height + line * pitch + column * BYTES_PER_PIXEL; - if (const auto offset = (TO_LINEAR ? unswizzled_offset : swizzled_offset); - offset >= input.size()) { - // TODO(Rodrigo): This is an out of bounds access that should never happen. To - // avoid crashing the emulator, break. - ASSERT_MSG(false, "offset {} exceeds input size {}!", offset, input.size()); - break; - } - u8* const dst = &output[TO_LINEAR ? swizzled_offset : unswizzled_offset]; const u8* const src = &input[TO_LINEAR ? unswizzled_offset : swizzled_offset]; |