summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/video_core/texture_cache/surface_base.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/video_core/texture_cache/surface_base.cpp b/src/video_core/texture_cache/surface_base.cpp
index 7a0fdb19b..6af9044ca 100644
--- a/src/video_core/texture_cache/surface_base.cpp
+++ b/src/video_core/texture_cache/surface_base.cpp
@@ -75,9 +75,12 @@ MatchStructureResult SurfaceBaseImpl::MatchesStructure(const SurfaceParams& rhs)
75 75
76 // Linear Surface check 76 // Linear Surface check
77 if (!params.is_tiled) { 77 if (!params.is_tiled) {
78 if (std::tie(params.width, params.height, params.pitch) == 78 if (std::tie(params.height, params.pitch) == std::tie(rhs.height, rhs.pitch)) {
79 std::tie(rhs.width, rhs.height, rhs.pitch)) { 79 if (params.width == rhs.width) {
80 return MatchStructureResult::FullMatch; 80 return MatchStructureResult::FullMatch;
81 } else {
82 return MatchStructureResult::SemiMatch;
83 }
81 } 84 }
82 return MatchStructureResult::None; 85 return MatchStructureResult::None;
83 } 86 }