TextureViewCompatibility.cs
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 FormatAlias, 13 Full, 14 } 15 }