1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-08-23 11:06:27 -05:00

Do not perform layout conversion on buffer texture flushes (#1729)

This commit is contained in:
gdkchan
2020-11-18 18:17:40 -03:00
committed by GitHub
parent 0679084f11
commit 7f536b5a15

View File

@@ -809,6 +809,8 @@ namespace Ryujinx.Graphics.Gpu.Image
}
}
if (Info.Target != Target.TextureBuffer)
{
if (Info.IsLinear)
{
data = LayoutConverter.ConvertLinearToLinearStrided(
@@ -837,6 +839,7 @@ namespace Ryujinx.Graphics.Gpu.Image
_sizeInfo,
data);
}
}
return data;
}