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.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs b/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs
deleted file mode 100644
index e0265138..00000000
--- a/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using Ryujinx.Graphics.Texture;
-
-namespace Ryujinx.Graphics.Gal.Shader
-{
- class ShaderIrMetaTex : ShaderIrMeta
- {
- public int Elem { get; private set; }
- public GalTextureTarget TextureTarget { get; private set; }
- public ShaderIrNode[] Coordinates { get; private set; }
- public TextureInstructionSuffix TextureInstructionSuffix { get; private set; }
- public ShaderIrOperGpr LevelOfDetail;
- public ShaderIrOperGpr Offset;
- public ShaderIrOperGpr DepthCompare;
- public int Component; // for TLD4(S)
-
- public ShaderIrMetaTex(int elem, GalTextureTarget textureTarget, TextureInstructionSuffix textureInstructionSuffix, params ShaderIrNode[] coordinates)
- {
- Elem = elem;
- TextureTarget = textureTarget;
- TextureInstructionSuffix = textureInstructionSuffix;
- Coordinates = coordinates;
- }
- }
-} \ No newline at end of file