TextureViewCompatibility.cs 323 B

12345678910111213
  1. namespace Ryujinx.Graphics.Gpu.Image
  2. {
  3. /// <summary>
  4. /// The level of view compatibility one texture has to another.
  5. /// Values are increasing in compatibility from 0 (incompatible).
  6. /// </summary>
  7. enum TextureViewCompatibility
  8. {
  9. Incompatible = 0,
  10. CopyOnly,
  11. Full
  12. }
  13. }