Improved Min/Mip -> MinFilter enum conversion

This commit is contained in:
gdk 2019-10-13 23:24:31 -03:00 committed by Thog
parent 1bb08742c1
commit cdeeac163f
3 changed files with 52 additions and 3 deletions

View file

@ -0,0 +1,8 @@
namespace Ryujinx.Graphics.Gpu.Image
{
enum SamplerMinFilter
{
Nearest = 1,
Linear
}
}