aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2019-12-31 21:08:02 -0300
committerThog <thog@protonmail.com>2020-01-09 02:13:00 +0100
commit0dbfe3c23ee072ec9dbc477f955a163107af2be1 (patch)
treef7f3501ef32891e80197717ab18b22a8d88fdb9f /Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs
parent6e092c05584ccbbd548ac26c056c1a7edfa6c1a0 (diff)
Re-add NVDEC project (not integrated)
Diffstat (limited to 'Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs')
-rw-r--r--Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs b/Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs
new file mode 100644
index 00000000..bcb01e70
--- /dev/null
+++ b/Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs
@@ -0,0 +1,33 @@
+namespace Ryujinx.Graphics.Vic
+{
+ struct SurfaceOutputConfig
+ {
+ public SurfacePixelFormat PixelFormat;
+
+ public int SurfaceWidth;
+ public int SurfaceHeight;
+ public int GobBlockHeight;
+
+ public ulong SurfaceLumaAddress;
+ public ulong SurfaceChromaUAddress;
+ public ulong SurfaceChromaVAddress;
+
+ public SurfaceOutputConfig(
+ SurfacePixelFormat pixelFormat,
+ int surfaceWidth,
+ int surfaceHeight,
+ int gobBlockHeight,
+ ulong outputSurfaceLumaAddress,
+ ulong outputSurfaceChromaUAddress,
+ ulong outputSurfaceChromaVAddress)
+ {
+ PixelFormat = pixelFormat;
+ SurfaceWidth = surfaceWidth;
+ SurfaceHeight = surfaceHeight;
+ GobBlockHeight = gobBlockHeight;
+ SurfaceLumaAddress = outputSurfaceLumaAddress;
+ SurfaceChromaUAddress = outputSurfaceChromaUAddress;
+ SurfaceChromaVAddress = outputSurfaceChromaVAddress;
+ }
+ }
+} \ No newline at end of file