AccessControl.cs 203 B

12345678910
  1. namespace Ryujinx.Graphics.Device
  2. {
  3. public enum AccessControl
  4. {
  5. None = 0,
  6. ReadOnly = 1 << 0,
  7. WriteOnly = 1 << 1,
  8. ReadWrite = ReadOnly | WriteOnly
  9. }
  10. }