mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-07-01 09:15:36 +02:00
Revert "small test to msaa copy texture behavior"
This commit is contained in:
parent
06c8f9806b
commit
d25d460116
1 changed files with 2 additions and 5 deletions
|
|
@ -1563,12 +1563,9 @@ void TextureCacheRuntime::CopyImageMSAA(Image& dst, Image& src,
|
||||||
std::span<const VideoCommon::ImageCopy> copies) {
|
std::span<const VideoCommon::ImageCopy> copies) {
|
||||||
const bool msaa_to_non_msaa = src.info.num_samples > 1 && dst.info.num_samples == 1;
|
const bool msaa_to_non_msaa = src.info.num_samples > 1 && dst.info.num_samples == 1;
|
||||||
if (msaa_copy_pass) {
|
if (msaa_copy_pass) {
|
||||||
msaa_copy_pass->CopyImage(dst, src, copies,
|
return msaa_copy_pass->CopyImage(dst, src, copies, msaa_to_non_msaa);
|
||||||
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 {
|
u64 TextureCacheRuntime::GetDeviceLocalMemory() const {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue