diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-07-10 00:02:03 +0200 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-07-14 18:00:28 +0200 |
commit | 5d31bab69a9cdc720347dfd69a9f5011b361e17a (patch) | |
tree | a662c10a776c0e91cd16c2a01b222369dcd2b1c1 /src | |
parent | Merge pull request #2690 from SciresM/physmem_fixes (diff) | |
download | yuzu-5d31bab69a9cdc720347dfd69a9f5011b361e17a.tar yuzu-5d31bab69a9cdc720347dfd69a9f5011b361e17a.tar.gz yuzu-5d31bab69a9cdc720347dfd69a9f5011b361e17a.tar.bz2 yuzu-5d31bab69a9cdc720347dfd69a9f5011b361e17a.tar.lz yuzu-5d31bab69a9cdc720347dfd69a9f5011b361e17a.tar.xz yuzu-5d31bab69a9cdc720347dfd69a9f5011b361e17a.tar.zst yuzu-5d31bab69a9cdc720347dfd69a9f5011b361e17a.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/texture_cache/surface_base.cpp | 9 |
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) // Linear Surface check if (!params.is_tiled) { - if (std::tie(params.width, params.height, params.pitch) == - std::tie(rhs.width, rhs.height, rhs.pitch)) { - return MatchStructureResult::FullMatch; + if (std::tie(params.height, params.pitch) == std::tie(rhs.height, rhs.pitch)) { + if (params.width == rhs.width) { + return MatchStructureResult::FullMatch; + } else { + return MatchStructureResult::SemiMatch; + } } return MatchStructureResult::None; } |