namespace Ryujinx.Graphics.Gpu.Image { /// /// The level of view compatibility one texture has to another. /// Values are increasing in compatibility from 0 (incompatible). /// enum TextureViewCompatibility { Incompatible = 0, LayoutIncompatible, CopyOnly, Full } }