aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Blend/BlendOp.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/Blend/BlendOp.cs')
-rw-r--r--Ryujinx.Graphics.GAL/Blend/BlendOp.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.GAL/Blend/BlendOp.cs b/Ryujinx.Graphics.GAL/Blend/BlendOp.cs
new file mode 100644
index 00000000..51a0062d
--- /dev/null
+++ b/Ryujinx.Graphics.GAL/Blend/BlendOp.cs
@@ -0,0 +1,11 @@
+namespace Ryujinx.Graphics.GAL.Blend
+{
+ public enum BlendOp
+ {
+ Add = 1,
+ Subtract,
+ ReverseSubtract,
+ Minimum,
+ Maximum
+ }
+}