summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/texture_cache.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-11-19 22:23:48 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-11-19 23:02:04 +0100
commit6f896d1fae3d244f83450a485d15e7cebe79abaa (patch)
tree56e4a01898b3ec79545113d95d9b43035a411284 /src/video_core/texture_cache/texture_cache.h
parentTextureCache: Implement additional D24S8 convertions. (diff)
downloadyuzu-6f896d1fae3d244f83450a485d15e7cebe79abaa.tar
yuzu-6f896d1fae3d244f83450a485d15e7cebe79abaa.tar.gz
yuzu-6f896d1fae3d244f83450a485d15e7cebe79abaa.tar.bz2
yuzu-6f896d1fae3d244f83450a485d15e7cebe79abaa.tar.lz
yuzu-6f896d1fae3d244f83450a485d15e7cebe79abaa.tar.xz
yuzu-6f896d1fae3d244f83450a485d15e7cebe79abaa.tar.zst
yuzu-6f896d1fae3d244f83450a485d15e7cebe79abaa.zip
Diffstat (limited to 'src/video_core/texture_cache/texture_cache.h')
-rw-r--r--src/video_core/texture_cache/texture_cache.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h
index 06257f064..4188f93c5 100644
--- a/src/video_core/texture_cache/texture_cache.h
+++ b/src/video_core/texture_cache/texture_cache.h
@@ -1096,13 +1096,13 @@ typename TextureCache<P>::BlitImages TextureCache<P>::GetBlitImages(
if (GetFormatType(dst_info.format) != GetFormatType(src_info.format)) {
continue;
}
- src_id = FindOrInsertImage(src_info, src_addr);
- RelaxedOptions dst_options{};
+ RelaxedOptions find_options{};
if (src_info.num_samples > 1) {
// it's a resolve, we must enforce the same format.
- dst_options = RelaxedOptions::ForceBrokenViews;
+ find_options = RelaxedOptions::ForceBrokenViews;
}
- dst_id = FindOrInsertImage(dst_info, dst_addr, dst_options);
+ src_id = FindOrInsertImage(src_info, src_addr, find_options);
+ dst_id = FindOrInsertImage(dst_info, dst_addr, find_options);
} while (has_deleted_images);
return BlitImages{
.dst_id = dst_id,