BufferAllocationType.cs 205 B

123456789101112
  1. namespace Ryujinx.Graphics.Vulkan
  2. {
  3. internal enum BufferAllocationType
  4. {
  5. Auto = 0,
  6. HostMappedNoCache,
  7. HostMapped,
  8. DeviceLocal,
  9. DeviceLocalMapped
  10. }
  11. }