X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=include%2FGL%2Ffreeglut_std.h;h=b24fcedc9a91566b60f6481fa0419c426f3598e4;hb=71b402b58a952aeec8d902edeec8954464f10323;hp=e8807307c0a53bf88af85c6cf97a12015ca3291e;hpb=5fafd8d6efafd063a5a6837de79092fd2dcb9765;p=freeglut diff --git a/include/GL/freeglut_std.h b/include/GL/freeglut_std.h index e880730..b24fced 100644 --- a/include/GL/freeglut_std.h +++ b/include/GL/freeglut_std.h @@ -121,21 +121,24 @@ */ #define FREEGLUT 1 #define GLUT_API_VERSION 4 -#define FREEGLUT_VERSION_2_0 1 #define GLUT_XLIB_IMPLEMENTATION 13 +/* Deprecated: + cf. http://sourceforge.net/mailarchive/forum.php?thread_name=CABcAi1hw7cr4xtigckaGXB5X8wddLfMcbA_rZ3NAuwMrX_zmsw%40mail.gmail.com&forum_name=freeglut-developer */ +#define FREEGLUT_VERSION_2_0 1 /* * 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 +/* Note: FREEGLUT_GLES is 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 -#elif FREEGLUT_GLES1 +#ifdef FREEGLUT_GLES # include # include +# include +#elif __APPLE__ +# include +# include #else # include # include @@ -554,11 +557,8 @@ FGAPI void FGAPIENTRY glutSolidIcosahedron( void ); * Teapot rendering functions, found in freeglut_teapot.c * NB: front facing polygons have clockwise winding, not counter clockwise */ -/* TODO: doesn't work with GLES1 yet */ -#ifndef EGL_VERSION_1_0 -FGAPI void FGAPIENTRY glutWireTeapot( GLdouble size ); -FGAPI void FGAPIENTRY glutSolidTeapot( GLdouble size ); -#endif +FGAPI void FGAPIENTRY glutWireTeapot( double size ); +FGAPI void FGAPIENTRY glutSolidTeapot( double size ); /* * Game mode functions, see freeglut_gamemode.c