Ryujinx/Ryujinx.Graphics.GAL/Sampler/MinFilter.cs

12 lines
232 B
C#
Raw Normal View History

2019-10-13 08:02:07 +02:00
namespace Ryujinx.Graphics.GAL.Sampler
{
public enum MinFilter
{
Nearest = 1,
Linear,
NearestMipmapNearest,
LinearMipmapNearest,
NearestMipmapLinear,
LinearMipmapLinear
}
}