same as for all other geometry functions, teapot takes double, not GLdouble now.

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1568 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
dcnieho 2013-03-31 09:46:27 +00:00
parent 6581072673
commit 78b4e988c4

View File

@ -559,10 +559,9 @@ FGAPI void FGAPIENTRY glutSolidIcosahedron( void );
* Teapot rendering functions, found in freeglut_teapot.c * Teapot rendering functions, found in freeglut_teapot.c
* NB: front facing polygons have clockwise winding, not counter clockwise * NB: front facing polygons have clockwise winding, not counter clockwise
*/ */
/* TODO: doesn't work with GLES1 yet */
#ifndef EGL_VERSION_1_0 #ifndef EGL_VERSION_1_0
FGAPI void FGAPIENTRY glutWireTeapot( GLdouble size ); FGAPI void FGAPIENTRY glutWireTeapot( double size );
FGAPI void FGAPIENTRY glutSolidTeapot( GLdouble size ); FGAPI void FGAPIENTRY glutSolidTeapot( double size );
#endif #endif
/* /*