aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/BlendFactor.cs
blob: 135873e992592e4b9b0ec0145c4b168dc463b8de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
namespace Ryujinx.Graphics.GAL
{
    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,

        ZeroGl                  = 0x4000,
        OneGl                   = 0x4001,
        SrcColorGl              = 0x4300,
        OneMinusSrcColorGl      = 0x4301,
        SrcAlphaGl              = 0x4302,
        OneMinusSrcAlphaGl      = 0x4303,
        DstAlphaGl              = 0x4304,
        OneMinusDstAlphaGl      = 0x4305,
        DstColorGl              = 0x4306,
        OneMinusDstColorGl      = 0x4307,
        SrcAlphaSaturateGl      = 0x4308,
        Src1ColorGl             = 0xc900,
        OneMinusSrc1ColorGl     = 0xc901,
        Src1AlphaGl             = 0xc902,
        OneMinusSrc1AlphaGl     = 0xc903
    }
}