aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Blend/BlendFactor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/Blend/BlendFactor.cs')
-rw-r--r--Ryujinx.Graphics.GAL/Blend/BlendFactor.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.GAL/Blend/BlendFactor.cs b/Ryujinx.Graphics.GAL/Blend/BlendFactor.cs
new file mode 100644
index 00000000..0eda08a7
--- /dev/null
+++ b/Ryujinx.Graphics.GAL/Blend/BlendFactor.cs
@@ -0,0 +1,25 @@
+namespace Ryujinx.Graphics.GAL.Blend
+{
+ public enum BlendFactor
+ {
+ Zero = 1,
+ One,
+ SrcColor,
+ OneMinusSrcColor,
+ SrcAlpha,
+ OneMinusSrcAlpha,
+ DstAlpha,
+ OneMinusDstAlpha,
+ DstColor,
+ OneMinusDstColor,
+ SrcAlphaSaturate,
+ Src1Color = 0x10,
+ OneMinusSrc1Color,
+ Src1Alpha,
+ OneMinusSrc1Alpha,
+ ConstantColor = 0xc001,
+ OneMinusConstantColor,
+ ConstantAlpha,
+ OneMinusConstantAlpha
+ }
+} \ No newline at end of file