MTLCommandBufferStatus.cs 221 B

123456789101112
  1. namespace Veldrid.MetalBindings
  2. {
  3. public enum MTLCommandBufferStatus
  4. {
  5. NotEnqueued = 0,
  6. Enqueued = 1,
  7. Committed = 2,
  8. Scheduled = 3,
  9. Completed = 4,
  10. Error = 5,
  11. }
  12. }