aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalTextureFilter.cs
blob: 8e9669f00f66652947039497cd42285f99c6885a (plain)
1
2
3
4
5
6
7
8
namespace Ryujinx.Graphics.Gal
{
    public enum GalTextureFilter
    {
        Nearest = 1,
        Linear  = 2
    }
}