Status.cs 538 B

12345678910111213141516171819202122
  1. namespace Ryujinx.HLE.HOS.Services.SurfaceFlinger
  2. {
  3. enum Status : int
  4. {
  5. Success = 0,
  6. WouldBlock = -11,
  7. NoMemory = -12,
  8. Busy = -16,
  9. NoInit = -19,
  10. BadValue = -22,
  11. InvalidOperation = -37,
  12. // Producer flags
  13. BufferNeedsReallocation = 1,
  14. ReleaseAllBuffers = 2,
  15. // Consumer errors
  16. StaleBufferSlot = 1,
  17. NoBufferAvailaible = 2,
  18. PresentLater = 3,
  19. }
  20. }