From 335d7f3ae57e8dc7952c46717ad180a486f24f61 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Mon, 3 Oct 2016 19:23:54 +0200 Subject: [PATCH] gsdx: add a nice enum for min filter --- plugins/GSdx/GS.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/plugins/GSdx/GS.h b/plugins/GSdx/GS.h index 2a2867335e..57460d22b9 100644 --- a/plugins/GSdx/GS.h +++ b/plugins/GSdx/GS.h @@ -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,