aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalShaderType.cs
blob: eb5aaf889a5596075d0474c6297644aafac7189a (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.Graphics.Gal
{
    public enum GalShaderType
    {
        Vertex         = 0,
        TessControl    = 1,
        TessEvaluation = 2,
        Geometry       = 3,
        Fragment       = 4
    }
}