FifoSemaphoreOperation.cs 150 B

123456789
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. enum FifoSemaphoreOperation
  4. {
  5. Counter = 0,
  6. Acquire = 1,
  7. Release = 2
  8. }
  9. }