small test to msaa copy texture behavior

This commit is contained in:
CamilleLaVey 2026-06-27 22:28:38 -04:00 committed by crueter
parent aa012961b8
commit 06c8f9806b

View file

@ -1563,9 +1563,12 @@ void TextureCacheRuntime::CopyImageMSAA(Image& dst, Image& src,
std::span<const VideoCommon::ImageCopy> copies) {
const bool msaa_to_non_msaa = src.info.num_samples > 1 && dst.info.num_samples == 1;
if (msaa_copy_pass) {
return msaa_copy_pass->CopyImage(dst, src, copies, msaa_to_non_msaa);
msaa_copy_pass->CopyImage(dst, src, copies,
src.info.num_samples > 1 && dst.info.num_samples == 1);
return;
}
UNIMPLEMENTED_MSG("Copying images with different samples is not supported.");
CopyImage(dst, src, copies);
}
u64 TextureCacheRuntime::GetDeviceLocalMemory() const {