summaryrefslogtreecommitdiff
path: root/include/texture.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/texture.h')
-rw-r--r--include/texture.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/texture.h b/include/texture.h
index b558694..3b60e5b 100644
--- a/include/texture.h
+++ b/include/texture.h
@@ -23,17 +23,17 @@ namespace mogltk {
GLuint GetHeight();
static void Unbind(void);
void Taint(void);
+ static void Taintall(void);
private:
GLuint width, height, tex;
bool texture_allocated;
SDL_Surface * surface;
bool planar, tainted;
-#ifdef TRACE_TEXTURES
static texture * header;
static texture * footer;
texture * next, * prev;
-#endif
static texture * active;
+ void recTaint(void);
};
};