From: Diederick Niehorster Date: Sun, 31 Mar 2013 09:46:27 +0000 (+0000) Subject: same as for all other geometry functions, teapot takes double, not GLdouble now. X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=18bf83a00e2af9d24ee171b70ec345b70fc661f0;p=freeglut same as for all other geometry functions, teapot takes double, not GLdouble now. git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1568 7f0cb862-5218-0410-a997-914c9d46530a --- diff --git a/include/GL/freeglut_std.h b/include/GL/freeglut_std.h index 8cac2dc..fc0cb80 100644 --- a/include/GL/freeglut_std.h +++ b/include/GL/freeglut_std.h @@ -559,10 +559,9 @@ 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 ); +FGAPI void FGAPIENTRY glutWireTeapot( double size ); +FGAPI void FGAPIENTRY glutSolidTeapot( double size ); #endif /*