summaryrefslogtreecommitdiff
path: root/include/gltexture.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gltexture.h')
-rw-r--r--include/gltexture.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/gltexture.h b/include/gltexture.h
index 7305eb5..1e4c3d2 100644
--- a/include/gltexture.h
+++ b/include/gltexture.h
@@ -16,11 +16,12 @@ namespace mogltk {
GLuint GetWidth();
GLuint GetHeight();
static void Unbind(void);
+ void Taint(void);
private:
GLuint width, height, tex;
bool texture_allocated;
SDL_Surface * surface;
- bool planar;
+ bool planar, tainted;
#ifdef TRACE_TEXTURES
static texture * header;
static texture * footer;