summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/decoders.cpp
diff options
context:
space:
mode:
authorAmeer J <52414509+ameerj@users.noreply.github.com>2023-08-06 20:49:34 +0200
committerAmeer J <52414509+ameerj@users.noreply.github.com>2023-08-06 20:54:58 +0200
commitb18c1fb1bbbcc235e9a1cbbb2704fed2e5895e61 (patch)
treeeab3d5b675ddac021b1c2c31c6f3d2cea41ef569 /src/video_core/textures/decoders.cpp
parentCompute Replicate (diff)
downloadyuzu-b18c1fb1bbbcc235e9a1cbbb2704fed2e5895e61.tar
yuzu-b18c1fb1bbbcc235e9a1cbbb2704fed2e5895e61.tar.gz
yuzu-b18c1fb1bbbcc235e9a1cbbb2704fed2e5895e61.tar.bz2
yuzu-b18c1fb1bbbcc235e9a1cbbb2704fed2e5895e61.tar.lz
yuzu-b18c1fb1bbbcc235e9a1cbbb2704fed2e5895e61.tar.xz
yuzu-b18c1fb1bbbcc235e9a1cbbb2704fed2e5895e61.tar.zst
yuzu-b18c1fb1bbbcc235e9a1cbbb2704fed2e5895e61.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/textures/decoders.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp
index 95bcdd37b..dde4b0904 100644
--- a/src/video_core/textures/decoders.cpp
+++ b/src/video_core/textures/decoders.cpp
@@ -88,6 +88,7 @@ void SwizzleImpl(std::span<u8> output, std::span<const u8> input, u32 width, u32
}
}
+
template <bool TO_LINEAR, u32 BYTES_PER_PIXEL>
void SwizzleSubrectImpl(std::span<u8> output, std::span<const u8> input, u32 width, u32 height,
u32 depth, u32 origin_x, u32 origin_y, u32 extent_x, u32 num_lines,
@@ -95,6 +96,14 @@ void SwizzleSubrectImpl(std::span<u8> output, std::span<const u8> input, u32 wid
// The origin of the transformation can be configured here, leave it as zero as the current API
// doesn't expose it.
static constexpr u32 origin_z = 0;
+ static u32 last_width = 0;
+ static u32 last_height = 0;
+ if (last_width == width && last_height == height) {
+ return;
+ }
+ LOG_ERROR(Debug, "Called");
+ last_width = width;
+ last_height = height;
// We can configure here a custom pitch
// As it's not exposed 'width * BYTES_PER_PIXEL' will be the expected pitch.