namespace Ryujinx.Graphics.Gpu.Image { /// /// The scale mode for a given texture. /// Blacklisted textures cannot be scaled, Eligible textures have not been scaled yet, /// and Scaled textures have been scaled already. /// enum TextureScaleMode { Eligible = 0, Scaled = 1, Blacklisted = 2 } }