summaryrefslogtreecommitdiff
path: root/include/texture.h
diff options
context:
space:
mode:
authorpixel <pixel>2004-06-20 23:51:59 +0000
committerpixel <pixel>2004-06-20 23:51:59 +0000
commitbf452e7f6a3fa0e41964fc8e2c57e1e577cd1682 (patch)
treeda2c9b920514d4f7b853cf92ee4050720261dde6 /include/texture.h
parentb009a6451b7560ba1e0064303deede287c381963 (diff)
Put some modifications in the overall. Font to texture doesn't work though.
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);
};
};