summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2022-04-04 15:57:54 -0400
committerameerj <52414509+ameerj@users.noreply.github.com>2022-04-04 15:57:54 -0400
commit494c41dd5a2638342637bb296e47114fbf70f67c (patch)
tree8616561aa23a2f650a581b8a35c99c97f518dad8 /src
parentf11443612041e66027e9f869c797a30af3788a93 (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.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/texture_cache/util.cpp1
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);