diff options
Diffstat (limited to 'Ryujinx.Graphics.Nvdec/Image/SurfaceReader.cs')
-rw-r--r-- | Ryujinx.Graphics.Nvdec/Image/SurfaceReader.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Nvdec/Image/SurfaceReader.cs b/Ryujinx.Graphics.Nvdec/Image/SurfaceReader.cs index a8199932..039a2583 100644 --- a/Ryujinx.Graphics.Nvdec/Image/SurfaceReader.cs +++ b/Ryujinx.Graphics.Nvdec/Image/SurfaceReader.cs @@ -16,7 +16,7 @@ namespace Ryujinx.Graphics.Nvdec.Image int width = surface.Width; int height = surface.Height; int stride = surface.Stride; - + ReadOnlySpan<byte> luma = gmm.DeviceGetSpan(lumaOffset, GetBlockLinearSize(width, height, 1)); ReadLuma(surface.YPlane.AsSpan(), luma, stride, width, height); |