aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs')
-rw-r--r--Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs b/Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs
deleted file mode 100644
index bcb01e70..00000000
--- a/Ryujinx.Graphics.Nvdec/Vic/SurfaceOutputConfig.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-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