From 7fc9c6dfbef57331c8b5eae0943f3fe95f2e63e1 Mon Sep 17 00:00:00 2001 From: pixel Date: Sun, 13 Apr 2003 12:44:14 +0000 Subject: Removing Baltisot from there --- includes/gltexture.h | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 includes/gltexture.h (limited to 'includes/gltexture.h') diff --git a/includes/gltexture.h b/includes/gltexture.h deleted file mode 100644 index a094694..0000000 --- a/includes/gltexture.h +++ /dev/null @@ -1,26 +0,0 @@ -#ifndef __GLTEXTURE_H__ -#define __GLTEXTURE_H__ - -#include -#include -#include "Exceptions.h" - -namespace mogltk { - class texture : public Base { - public: - texture(int = 256, int = 256, bool = false) throw (GeneralException); - virtual ~texture(); - SDL_Surface * GetSurface() throw (GeneralException); - void Generate() throw (GeneralException); - void Bind(bool = true) throw (GeneralException); - GLuint GetWidth(); - GLuint GetHeight(); - static void Unbind(void); - private: - GLuint width, height, tex; - SDL_Surface * surface; - bool planar; - }; -}; - -#endif -- cgit v1.2.3