Mark texture as modified and sync on I2M fast path (#4449)

This commit is contained in:
gdkchan 2023-02-21 06:40:23 -03:00 committed by Matt Heins
parent b23c2ab989
commit 708946827d

View file

@ -197,7 +197,9 @@ namespace Ryujinx.Graphics.Gpu.Engine.InlineToMemory
if (target != null)
{
target.SynchronizeMemory();
target.SetData(data, 0, 0, new GAL.Rectangle<int>(_dstX, _dstY, _lineLengthIn / target.Info.FormatInfo.BytesPerPixel, _lineCount));
target.SignalModified();
return;
}