Files
ryujinx/Ryujinx.Graphics/Gal/GalTextureFilter.cs
T
2018-04-08 16:41:38 -03:00

8 lines
120 B
C#

namespace Ryujinx.Graphics.Gal
{
public enum GalTextureFilter
{
Nearest = 1,
Linear = 2
}
}