TextureSearchFlags.cs 394 B

123456789101112131415161718
  1. using System;
  2. namespace Ryujinx.Graphics.Gpu.Image
  3. {
  4. /// <summary>
  5. /// Texture search flags, defines texture information comparison rules.
  6. /// </summary>
  7. [Flags]
  8. enum TextureSearchFlags
  9. {
  10. None = 0,
  11. Strict = 1 << 0,
  12. ForSampler = 1 << 1,
  13. ForCopy = 1 << 2,
  14. WithUpscale = 1 << 3,
  15. NoCreate = 1 << 4
  16. }
  17. }