ShaderStage.cs 206 B

123456789101112
  1. namespace Ryujinx.Graphics.Shader
  2. {
  3. public enum ShaderStage
  4. {
  5. Compute,
  6. Vertex,
  7. TessellationControl,
  8. TessellationEvaluation,
  9. Geometry,
  10. Fragment
  11. }
  12. }