MTLVertexStepFunction.cs 211 B

1234567891011
  1. namespace Veldrid.MetalBindings
  2. {
  3. public enum MTLVertexStepFunction
  4. {
  5. Constant = 0,
  6. PerVertex = 1,
  7. PerInstance = 2,
  8. PerPatch = 3,
  9. PerPatchControlPoint = 4,
  10. }
  11. }