TextureViewCompatibility.cs 351 B

1234567891011121314
  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. LayoutIncompatible,
  11. CopyOnly,
  12. Full
  13. }
  14. }