X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=include%2FGL%2Ffreeglut_std.h;h=799987e8df96c0974c95dea0656f95401a74ea21;hb=223d39f2318e1724283c50c346843199c81d2e7c;hp=573243a5d766563f4642406fcb9375e1d4da7645;hpb=1ede9f68f98e29ddd07bd466310967e716bfac92;p=freeglut diff --git a/include/GL/freeglut_std.h b/include/GL/freeglut_std.h index 573243a..799987e 100644 --- a/include/GL/freeglut_std.h +++ b/include/GL/freeglut_std.h @@ -119,16 +119,15 @@ /* * Always include OpenGL and GLU headers */ -#ifdef ANDROID -/* Use EGL (implies OpenGL ES) */ -/* TODO: EGL/GLES builds should be more generally defined, possibly by - generating this file dynamically */ +/* 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 -/* TODO: we probably need 2 builds: -lGLESv1 and -lGLESv2 */ -/* #include */ # include -/* TODO: temporary work-around for e.g. glutWireCube */ -# define GLdouble GLfloat +#elif FREEGLUT_GLES1 +# include +# include #else # include # include @@ -525,6 +524,11 @@ FGAPI int FGAPIENTRY glutStrokeLength( void* font, const unsigned char* stri /* * Geometry functions, see freeglut_geometry.c */ +#ifdef EGL_VERSION_1_0 +/* TODO: temporary work-around for missing GLdouble in GLES */ +# define GLdouble GLfloat +#endif + FGAPI void FGAPIENTRY glutWireCube( GLdouble size ); FGAPI void FGAPIENTRY glutSolidCube( GLdouble size ); FGAPI void FGAPIENTRY glutWireSphere( GLdouble radius, GLint slices, GLint stacks );