summaryrefslogtreecommitdiff
path: root/include/glbase.h
diff options
context:
space:
mode:
authorpixel <pixel>2002-12-07 00:42:14 +0000
committerpixel <pixel>2002-12-07 00:42:14 +0000
commit11f44e36d5f02f8309fc463f9a2c6cd81b42c3ce (patch)
treee0daba1124a46dd6dc30150066324f62c6c9eedc /include/glbase.h
parent70ab3da408f5939fbfec4237e87f503ae82b2179 (diff)
Whoups
Diffstat (limited to 'include/glbase.h')
-rw-r--r--include/glbase.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/include/glbase.h b/include/glbase.h
new file mode 100644
index 0000000..1852250
--- /dev/null
+++ b/include/glbase.h
@@ -0,0 +1,29 @@
+#ifndef __GLBASE_H__
+#define __GLBASE_H__
+
+#include <GL/gl.h>
+#include <SDL.h>
+#include <Exceptions.h>
+
+namespace mogltk {
+ class glbase : public Base {
+ public:
+ static int setup(int w = 640, int h = 480, int flags = 0) throw(GeneralException);
+ static int GetWidth(void);
+ static int GetHeight(void);
+ static int GetInited(void);
+ static void Enter2DMode(void);
+ static void Leave2DMode(void);
+ static void Flip(void);
+ static bool is2D(void);
+ static void glVertex(GLdouble, GLdouble, GLdouble = 0.0, GLdouble = 1.0);
+ static void glVertex(GLfloat, GLfloat, GLfloat = 0.0, GLfloat = 1.0);
+ static void glVertex(GLint, GLint, GLint = 0, GLint = 1);
+ static void glVertex(GLshort, GLshort, GLshort = 0, GLshort = 1);
+ private:
+ static int width, height, inited, twoD;
+ static SDL_Surface * surface;
+ };
+};
+
+#endif