1
0
forked from MeloNX/MeloNX
2023-04-27 23:51:14 +02:00

12 lines
224 B
C#

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