aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/NvGpuEngine2dReg.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-10-27 15:46:17 -0300
committerAc_K <Acoustik666@gmail.com>2018-10-27 18:46:17 +0000
commit111d14f74aca5e6467473ec73ab0825b9c0b4db1 (patch)
tree971cbea8efcee6605c8f355f3ab621e1c2de43d1 /Ryujinx.Graphics/NvGpuEngine2dReg.cs
parent19152def95d3def857159fbf0014dc09b3b9bac0 (diff)
Crop instead of resizing on 2d engine texture copies (#482)
* Crop instead of resizing on 2d engine texture copies * Remove unused local
Diffstat (limited to 'Ryujinx.Graphics/NvGpuEngine2dReg.cs')
-rw-r--r--Ryujinx.Graphics/NvGpuEngine2dReg.cs16
1 files changed, 15 insertions, 1 deletions
diff --git a/Ryujinx.Graphics/NvGpuEngine2dReg.cs b/Ryujinx.Graphics/NvGpuEngine2dReg.cs
index 00f6f578..fe003745 100644
--- a/Ryujinx.Graphics/NvGpuEngine2dReg.cs
+++ b/Ryujinx.Graphics/NvGpuEngine2dReg.cs
@@ -20,6 +20,20 @@ namespace Ryujinx.Graphics
SrcWidth = 0x92,
SrcHeight = 0x93,
SrcAddress = 0x94,
- CopyOperation = 0xab
+ ClipEnable = 0xa4,
+ CopyOperation = 0xab,
+ BlitControl = 0x223,
+ BlitDstX = 0x22c,
+ BlitDstY = 0x22d,
+ BlitDstW = 0x22e,
+ BlitDstH = 0x22f,
+ BlitDuDxFract = 0x230,
+ BlitDuDxInt = 0x231,
+ BlitDvDyFract = 0x232,
+ BlitDvDyInt = 0x233,
+ BlitSrcXFract = 0x234,
+ BlitSrcXInt = 0x235,
+ BlitSrcYFract = 0x236,
+ BlitSrcYInt = 0x237
}
} \ No newline at end of file