gsdx: add a nice enum for min filter

This commit is contained in:
Gregory Hainaut 2016-10-03 19:23:54 +02:00
parent 7ea0e90678
commit 335d7f3ae5
1 changed files with 10 additions and 0 deletions

View File

@ -217,6 +217,16 @@ enum GS_AFAIL
AFAIL_RGB_ONLY = 3,
};
enum class GS_MIN_FILTER : uint8_t
{
Nearest = 0,
Linear = 1,
Nearest_Mipmap_Nearest = 2,
Nearest_Mipmap_Linear = 3,
Linear_Mipmap_Nearest = 4,
Linear_Mipmap_Linear = 5,
};
enum class GSRendererType : int8_t
{
Undefined = -1,