aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs')
-rw-r--r--Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs b/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs
index 72ea221a..e0265138 100644
--- a/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs
+++ b/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs
@@ -13,12 +13,12 @@ namespace Ryujinx.Graphics.Gal.Shader
public ShaderIrOperGpr DepthCompare;
public int Component; // for TLD4(S)
- public ShaderIrMetaTex(int Elem, GalTextureTarget TextureTarget, TextureInstructionSuffix TextureInstructionSuffix, params ShaderIrNode[] Coordinates)
+ public ShaderIrMetaTex(int elem, GalTextureTarget textureTarget, TextureInstructionSuffix textureInstructionSuffix, params ShaderIrNode[] coordinates)
{
- this.Elem = Elem;
- this.TextureTarget = TextureTarget;
- this.TextureInstructionSuffix = TextureInstructionSuffix;
- this.Coordinates = Coordinates;
+ Elem = elem;
+ TextureTarget = textureTarget;
+ TextureInstructionSuffix = textureInstructionSuffix;
+ Coordinates = coordinates;
}
}
} \ No newline at end of file