X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=include%2FGL%2Ffreeglut_std.h;h=8bcfbd4470bbe5775a286a423b8c8766cc227e0e;hb=b744f1401b990f642e96d4c65cc86eca5224efd1;hp=f77497ea4cb9cb0c4968e18d213b68a73fe63d25;hpb=091b26aaa1610f8762beffd84e1e5ae2062b6289;p=freeglut diff --git a/include/GL/freeglut_std.h b/include/GL/freeglut_std.h index f77497e..8bcfbd4 100644 --- a/include/GL/freeglut_std.h +++ b/include/GL/freeglut_std.h @@ -119,6 +119,9 @@ /* * Always include OpenGL and GLU headers */ +/* Note: FREEGLUT_GLES1 and FREEGLUT_GLES2 are only used to cleanly + bootstrap headers inclusion here; use GLES constants directly + (e.g. GL_ES_VERSION_2_0) for all other needs */ #ifdef FREEGLUT_GLES2 # include # include @@ -523,7 +526,7 @@ FGAPI int FGAPIENTRY glutStrokeLength( void* font, const unsigned char* stri */ #ifdef EGL_VERSION_1_0 /* TODO: temporary work-around for missing GLdouble in GLES */ -# define GLdouble GLfloat +# define GLdouble GLfloat #endif FGAPI void FGAPIENTRY glutWireCube( GLdouble size ); @@ -550,6 +553,11 @@ FGAPI void FGAPIENTRY glutSolidIcosahedron( void ); FGAPI void FGAPIENTRY glutWireTeapot( GLdouble size ); FGAPI void FGAPIENTRY glutSolidTeapot( GLdouble size ); +#ifdef EGL_VERSION_1_0 +/* TODO: temporary work-around for missing GLdouble in GLES */ +# undef GLdouble +#endif + /* * Game mode functions, see freeglut_gamemode.c */