diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-08-16 20:28:10 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-08-16 20:28:10 +0200 |
commit | 537c6ac8fe13adb63d7cd76ef80f7336f8fa22dd (patch) | |
tree | a18aa86f6e98ff375b97ceb3dad134ce4dcbfcbc /src/video_core/textures | |
parent | Merge pull request #6868 from yzct12345/safe-threads-no-deadlocks (diff) | |
download | yuzu-537c6ac8fe13adb63d7cd76ef80f7336f8fa22dd.tar yuzu-537c6ac8fe13adb63d7cd76ef80f7336f8fa22dd.tar.gz yuzu-537c6ac8fe13adb63d7cd76ef80f7336f8fa22dd.tar.bz2 yuzu-537c6ac8fe13adb63d7cd76ef80f7336f8fa22dd.tar.lz yuzu-537c6ac8fe13adb63d7cd76ef80f7336f8fa22dd.tar.xz yuzu-537c6ac8fe13adb63d7cd76ef80f7336f8fa22dd.tar.zst yuzu-537c6ac8fe13adb63d7cd76ef80f7336f8fa22dd.zip |
Diffstat (limited to 'src/video_core/textures')
-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 c32ae956a..d2c4a7fcf 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]; |