aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/Shader/ShaderIrOperPred.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Gal/Shader/ShaderIrOperPred.cs')
-rw-r--r--Ryujinx.Graphics/Gal/Shader/ShaderIrOperPred.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/Ryujinx.Graphics/Gal/Shader/ShaderIrOperPred.cs b/Ryujinx.Graphics/Gal/Shader/ShaderIrOperPred.cs
deleted file mode 100644
index 6c16a145..00000000
--- a/Ryujinx.Graphics/Gal/Shader/ShaderIrOperPred.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-namespace Ryujinx.Graphics.Gal.Shader
-{
- class ShaderIrOperPred : ShaderIrNode
- {
- public const int UnusedIndex = 0x7;
- public const int NeverExecute = 0xf;
-
- public bool IsConst => Index >= UnusedIndex;
-
- public int Index { get; set; }
-
- public ShaderIrOperPred(int index)
- {
- Index = index;
- }
- }
-} \ No newline at end of file