aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Vic/SurfaceOutputConfig.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Vic/SurfaceOutputConfig.cs')
-rw-r--r--Ryujinx.Graphics/Vic/SurfaceOutputConfig.cs28
1 files changed, 14 insertions, 14 deletions
diff --git a/Ryujinx.Graphics/Vic/SurfaceOutputConfig.cs b/Ryujinx.Graphics/Vic/SurfaceOutputConfig.cs
index 0a232744..bdd55fc7 100644
--- a/Ryujinx.Graphics/Vic/SurfaceOutputConfig.cs
+++ b/Ryujinx.Graphics/Vic/SurfaceOutputConfig.cs
@@ -13,21 +13,21 @@ namespace Ryujinx.Graphics.Vic
public long SurfaceChromaVAddress;
public SurfaceOutputConfig(
- SurfacePixelFormat PixelFormat,
- int SurfaceWidth,
- int SurfaceHeight,
- int GobBlockHeight,
- long OutputSurfaceLumaAddress,
- long OutputSurfaceChromaUAddress,
- long OutputSurfaceChromaVAddress)
+ SurfacePixelFormat pixelFormat,
+ int surfaceWidth,
+ int surfaceHeight,
+ int gobBlockHeight,
+ long outputSurfaceLumaAddress,
+ long outputSurfaceChromaUAddress,
+ long outputSurfaceChromaVAddress)
{
- this.PixelFormat = PixelFormat;
- this.SurfaceWidth = SurfaceWidth;
- this.SurfaceHeight = SurfaceHeight;
- this.GobBlockHeight = GobBlockHeight;
- this.SurfaceLumaAddress = OutputSurfaceLumaAddress;
- this.SurfaceChromaUAddress = OutputSurfaceChromaUAddress;
- this.SurfaceChromaVAddress = OutputSurfaceChromaVAddress;
+ PixelFormat = pixelFormat;
+ SurfaceWidth = surfaceWidth;
+ SurfaceHeight = surfaceHeight;
+ GobBlockHeight = gobBlockHeight;
+ SurfaceLumaAddress = outputSurfaceLumaAddress;
+ SurfaceChromaUAddress = outputSurfaceChromaUAddress;
+ SurfaceChromaVAddress = outputSurfaceChromaVAddress;
}
}
} \ No newline at end of file