diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/glbase.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/glbase.h b/include/glbase.h index 1852250..39c7493 100644 --- a/include/glbase.h +++ b/include/glbase.h @@ -16,10 +16,10 @@ namespace mogltk { 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); + static void glVertex(GLint, GLint, GLint = 0, GLint = 1); + static void glVertex(GLfloat, GLfloat, GLfloat = 0.0, GLfloat = 1.0); + static void glVertex(GLdouble, GLdouble, GLdouble = 0.0, GLdouble = 1.0); private: static int width, height, inited, twoD; static SDL_Surface * surface; |