TextureSearchFlags.cs 219 B

12345678910111213
  1. using System;
  2. namespace Ryujinx.Graphics.Gpu.Image
  3. {
  4. [Flags]
  5. enum TextureSearchFlags
  6. {
  7. None = 0,
  8. IgnoreMs = 1 << 0,
  9. Strict = 1 << 1 | Sampler,
  10. Sampler = 1 << 2
  11. }
  12. }