diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2022-08-25 23:16:41 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-26 02:16:41 +0000 |
| commit | 923089a29825cad8159a63616d14dcbd7161cb3c (patch) | |
| tree | 99c7e39baba29a743dcccbdb046b2db3d5148d45 /Ryujinx.Graphics.Gpu/Engine/Dma | |
| parent | d9aa15eb243bc1b40892c9fcfcbb0e9ef66cfa63 (diff) | |
Fast path for Inline-to-Memory texture data transfers (#3610)
* Fast path for Inline-to-Memory texture data transfers
* Only do it for block linear textures to be on the safe side
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Engine/Dma')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Engine/Dma/DmaClass.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClass.cs b/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClass.cs index 5814eeb7..da25a89d 100644 --- a/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClass.cs +++ b/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClass.cs @@ -224,7 +224,8 @@ namespace Ryujinx.Graphics.Gpu.Engine.Dma xCount, yCount, dstLinear, - dst.MemoryLayout); + dst.MemoryLayout.UnpackGobBlocksInY(), + dst.MemoryLayout.UnpackGobBlocksInZ()); if (target != null) { |
