mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-28 11:50:50 +01:00
Do not flush multisample textures (#1973)
This commit is contained in:
parent
053dcfdb05
commit
67033ed8e0
@ -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.
|
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;
|
ITexture texture = HostTexture;
|
||||||
if (ScaleFactor != 1f)
|
if (ScaleFactor != 1f)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user