aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalPipelineState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Gal/GalPipelineState.cs')
-rw-r--r--Ryujinx.Graphics/Gal/GalPipelineState.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Ryujinx.Graphics/Gal/GalPipelineState.cs b/Ryujinx.Graphics/Gal/GalPipelineState.cs
index 8deb68b4..c044a55f 100644
--- a/Ryujinx.Graphics/Gal/GalPipelineState.cs
+++ b/Ryujinx.Graphics/Gal/GalPipelineState.cs
@@ -2,7 +2,7 @@
{
public struct ColorMaskState
{
- private static readonly ColorMaskState _Default = new ColorMaskState()
+ private static readonly ColorMaskState DefaultBackingField = new ColorMaskState()
{
Red = true,
Green = true,
@@ -10,7 +10,7 @@
Alpha = true
};
- public static ColorMaskState Default => _Default;
+ public static ColorMaskState Default => DefaultBackingField;
public bool Red;
public bool Green;
@@ -20,7 +20,7 @@
public struct BlendState
{
- private static readonly BlendState _Default = new BlendState()
+ private static readonly BlendState DefaultBackingField = new BlendState()
{
Enabled = false,
SeparateAlpha = false,
@@ -32,7 +32,7 @@
FuncDstAlpha = GalBlendFactor.Zero
};
- public static BlendState Default => _Default;
+ public static BlendState Default => DefaultBackingField;
public bool Enabled;
public bool SeparateAlpha;
@@ -111,9 +111,9 @@
{
ConstBufferKeys = new long[Stages][];
- for (int Stage = 0; Stage < Stages; Stage++)
+ for (int stage = 0; stage < Stages; stage++)
{
- ConstBufferKeys[Stage] = new long[ConstBuffersPerStage];
+ ConstBufferKeys[stage] = new long[ConstBuffersPerStage];
}
Blends = new BlendState[RenderTargetsCount];