GalShaderType.cs 215 B

1234567891011
  1. namespace Ryujinx.Graphics.Gal
  2. {
  3. public enum GalShaderType
  4. {
  5. Vertex = 0,
  6. TessControl = 1,
  7. TessEvaluation = 2,
  8. Geometry = 3,
  9. Fragment = 4
  10. }
  11. }