summaryrefslogtreecommitdiff
path: root/include/gltexture.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gltexture.h')
-rw-r--r--include/gltexture.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/gltexture.h b/include/gltexture.h
deleted file mode 100644
index a5137db..0000000
--- a/include/gltexture.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef __GLTEXTURE_H__
-#define __GLTEXTURE_H__
-
-#include <SDL.h>
-#include <SDL_opengl.h>
-#include <Handle.h>
-#include <Exceptions.h>
-#include <generic.h>
-#include <texture.h>
-
-namespace mogltk {
- class gltexture : public texture {
- public:
- gltexture(int = 256, int = 256, bool = false) throw (GeneralException);
- gltexture(Handle *, bool = false) throw (GeneralException);
- virtual ~gltexture();
- void Generate();
- void Taint();
- void Bind(bool = true);
- static void Unbind(void);
- private:
- GLuint tex;
- bool texture_allocated, planar, tainted;
- static gltexture * active;
- };
-};
-
-#endif