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 } }