aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/AlphaTestOp.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Shader/AlphaTestOp.cs')
-rw-r--r--Ryujinx.Graphics.Shader/AlphaTestOp.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/AlphaTestOp.cs b/Ryujinx.Graphics.Shader/AlphaTestOp.cs
new file mode 100644
index 00000000..57c0d131
--- /dev/null
+++ b/Ryujinx.Graphics.Shader/AlphaTestOp.cs
@@ -0,0 +1,14 @@
+namespace Ryujinx.Graphics.Shader
+{
+ public enum AlphaTestOp
+ {
+ Never = 1,
+ Less,
+ Equal,
+ LessOrEqual,
+ Greater,
+ NotEqual,
+ GreaterOrEqual,
+ Always
+ }
+} \ No newline at end of file