namespace Ryujinx.Graphics.GAL
{
    public enum MinFilter
    {
        Nearest = 1,
        Linear,
        NearestMipmapNearest,
        LinearMipmapNearest,
        NearestMipmapLinear,
        LinearMipmapLinear
    }
}