summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-12-09 11:26:21 +0100
committerGitHub <noreply@github.com>2021-12-09 11:26:21 +0100
commit429320aee8a0beab0081a61e6e3cfbc6bb754db2 (patch)
treeb222f9be44295648aa1c9abcf7d104b48870eaab
parentMerge pull request #7519 from itsmeft24/master (diff)
parentTexture Cache: Fix crashes on NVIDIA. (diff)
downloadyuzu-429320aee8a0beab0081a61e6e3cfbc6bb754db2.tar
yuzu-429320aee8a0beab0081a61e6e3cfbc6bb754db2.tar.gz
yuzu-429320aee8a0beab0081a61e6e3cfbc6bb754db2.tar.bz2
yuzu-429320aee8a0beab0081a61e6e3cfbc6bb754db2.tar.lz
yuzu-429320aee8a0beab0081a61e6e3cfbc6bb754db2.tar.xz
yuzu-429320aee8a0beab0081a61e6e3cfbc6bb754db2.tar.zst
yuzu-429320aee8a0beab0081a61e6e3cfbc6bb754db2.zip
-rw-r--r--src/video_core/texture_cache/texture_cache.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h
index 565b99254..e195b1e98 100644
--- a/src/video_core/texture_cache/texture_cache.h
+++ b/src/video_core/texture_cache/texture_cache.h
@@ -1122,7 +1122,7 @@ typename TextureCache<P>::BlitImages TextureCache<P>::GetBlitImages(
break;
}
if (can_be_depth_blit) {
- const ImageBase* const dst_image = src_id ? &slot_images[src_id] : nullptr;
+ const ImageBase* const dst_image = dst_id ? &slot_images[dst_id] : nullptr;
DeduceBlitImages(dst_info, src_info, dst_image, src_image);
if (GetFormatType(dst_info.format) != GetFormatType(src_info.format)) {
continue;
@@ -1135,8 +1135,11 @@ typename TextureCache<P>::BlitImages TextureCache<P>::GetBlitImages(
dst_id = InsertImage(dst_info, dst_addr, RelaxedOptions{});
}
} while (has_deleted_images);
- if (GetFormatType(dst_info.format) != SurfaceType::ColorTexture) {
- // Make sure the images are depth and/or stencil textures.
+ const ImageBase& src_image = slot_images[src_id];
+ const ImageBase& dst_image = slot_images[dst_id];
+ if (GetFormatType(dst_info.format) != GetFormatType(dst_image.info.format) ||
+ GetFormatType(src_info.format) != GetFormatType(src_image.info.format)) {
+ // Make sure the images match the expected format.
do {
has_deleted_images = false;
src_id = FindOrInsertImage(src_info, src_addr, RelaxedOptions{});