GalPrimitiveType.cs 648 B

123456789101112131415161718192021
  1. namespace Ryujinx.Graphics.Gal
  2. {
  3. public enum GalPrimitiveType
  4. {
  5. Points = 0x0,
  6. Lines = 0x1,
  7. LineLoop = 0x2,
  8. LineStrip = 0x3,
  9. Triangles = 0x4,
  10. TriangleStrip = 0x5,
  11. TriangleFan = 0x6,
  12. Quads = 0x7,
  13. QuadStrip = 0x8,
  14. Polygon = 0x9,
  15. LinesAdjacency = 0xa,
  16. LineStripAdjacency = 0xb,
  17. TrianglesAdjacency = 0xc,
  18. TriangleStripAdjacency = 0xd,
  19. Patches = 0xe
  20. }
  21. }