ShaderType.cs 185 B

1234567891011
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. enum ShaderType
  4. {
  5. Vertex,
  6. TessellationControl,
  7. TessellationEvaluation,
  8. Geometry,
  9. Fragment
  10. }
  11. }