From a87f7f202973d2ab0db088f97b3538ae724bbe69 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sun, 26 Dec 2021 13:05:26 -0300 Subject: Fix DMA copy fast path line size when xCount < stride (#2942) --- Ryujinx.Graphics.Gpu/Image/Texture.cs | 1 + 1 file changed, 1 insertion(+) (limited to 'Ryujinx.Graphics.Gpu/Image') diff --git a/Ryujinx.Graphics.Gpu/Image/Texture.cs b/Ryujinx.Graphics.Gpu/Image/Texture.cs index a13edc69..590356e3 100644 --- a/Ryujinx.Graphics.Gpu/Image/Texture.cs +++ b/Ryujinx.Graphics.Gpu/Image/Texture.cs @@ -760,6 +760,7 @@ namespace Ryujinx.Graphics.Gpu.Image Info.FormatInfo.BlockWidth, Info.FormatInfo.BlockHeight, Info.Stride, + Info.Stride, Info.FormatInfo.BytesPerPixel, data); } -- cgit v1.2.3