SemaphoreOperation.cs 212 B

123456789101112
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. /// <summary>
  4. /// GPU semaphore operation.
  5. /// </summary>
  6. enum SemaphoreOperation
  7. {
  8. Release = 0,
  9. Acquire = 1,
  10. Counter = 2
  11. }
  12. }