Revert "small test to msaa copy texture behavior"

This commit is contained in:
CamilleLaVey 2026-06-27 23:04:00 -04:00 committed by crueter
parent 06c8f9806b
commit d25d460116

View file

@ -1563,12 +1563,9 @@ 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) {
msaa_copy_pass->CopyImage(dst, src, copies,
src.info.num_samples > 1 && dst.info.num_samples == 1);
return;
return msaa_copy_pass->CopyImage(dst, src, copies, msaa_to_non_msaa);
}
CopyImage(dst, src, copies);
UNIMPLEMENTED_MSG("Copying images with different samples is not supported.");
}
u64 TextureCacheRuntime::GetDeviceLocalMemory() const {