Added mipmap support to Image filter struct and OpenGL texture filter helper functions

This commit is contained in:
Alexander Szpakowski
2013-01-01 21:44:27 -04:00
parent 1678252b7a
commit ab98b0de45
3 changed files with 38 additions and 8 deletions
+2
View File
@@ -46,6 +46,7 @@ public:
{
FILTER_LINEAR = 1,
FILTER_NEAREST,
FILTER_NONE,
FILTER_MAX_ENUM
};
@@ -54,6 +55,7 @@ public:
Filter();
FilterMode min;
FilterMode mag;
FilterMode mipmap;
};
struct Wrap