From 6b63855d6e31a4d63ced9c803847ee35c70ee514 Mon Sep 17 00:00:00 2001 From: pixel Date: Sun, 9 Feb 2003 19:29:34 +0000 Subject: Whoups.. --- include/gltexture.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/gltexture.h b/include/gltexture.h index 2a5ab0b..bcfed2d 100644 --- a/include/gltexture.h +++ b/include/gltexture.h @@ -7,10 +7,13 @@ #include namespace mogltk { + enum texture_type { + RAW_RGBA, + }; class texture : public Base { public: texture(int = 256, int = 256, bool = false) throw (GeneralException); - texture(Handle *, bool = false) throw (GeneralException); + texture(Handle *, bool = false, texture_type = RAW_RGBA) throw (GeneralException); virtual ~texture(); SDL_Surface * GetSurface(); void Generate(); -- cgit v1.2.3