diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-04-04 15:57:54 -0400 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-04-04 15:57:54 -0400 |
commit | 494c41dd5a2638342637bb296e47114fbf70f67c (patch) | |
tree | 8616561aa23a2f650a581b8a35c99c97f518dad8 | |
parent | f11443612041e66027e9f869c797a30af3788a93 (diff) |
texture_cache/util: Remove unneeded ReadBlockUnsafe
This call was reading GPU memory into the dst buffer, which is then overwritten by the SwizzleTexture call.
-rw-r--r-- | src/video_core/texture_cache/util.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/util.cpp b/src/video_core/texture_cache/util.cpp index d8e19cb2f..334cb7b05 100644 --- a/src/video_core/texture_cache/util.cpp +++ b/src/video_core/texture_cache/util.cpp @@ -561,7 +561,6 @@ void SwizzleBlockLinearImage(Tegra::MemoryManager& gpu_memory, GPUVAddr gpu_addr for (s32 layer = 0; layer < info.resources.layers; ++layer) { const std::span<const u8> src = input.subspan(host_offset); - gpu_memory.ReadBlockUnsafe(gpu_addr + guest_offset, dst.data(), dst.size_bytes()); SwizzleTexture(dst, src, bytes_per_block, num_tiles.width, num_tiles.height, num_tiles.depth, block.height, block.depth); |