mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-27 17:07:10 +02:00
Do not flush multisample textures (#1973)
This commit is contained in:
parent
e54a89d2c5
commit
ceeba66de7
1 changed files with 6 additions and 0 deletions
|
@ -723,6 +723,12 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||
return; // Flushing this format is not supported, as it may have been converted to another host format.
|
||||
}
|
||||
|
||||
if (Info.Target == Target.Texture2DMultisample ||
|
||||
Info.Target == Target.Texture2DMultisampleArray)
|
||||
{
|
||||
return; // Flushing multisample textures is not supported, the host does not allow getting their data.
|
||||
}
|
||||
|
||||
ITexture texture = HostTexture;
|
||||
if (ScaleFactor != 1f)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue