mirror of https://github.com/PCSX2/pcsx2.git
gsdx: add a nice enum for min filter
This commit is contained in:
parent
7ea0e90678
commit
335d7f3ae5
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue