X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Ffreeglut_teapot.c;h=0956642be22a88ec9c01b083b161274c28143e97;hb=cb35752f171cdd1ee2319194c890d86bc6242259;hp=3a5d3f66e1db3aca2aceb2d9890aec7bcfe5ae56;hpb=4fa63bbb5637f30db8eec9de49c0b2c4830cb866;p=freeglut diff --git a/src/freeglut_teapot.c b/src/freeglut_teapot.c index 3a5d3f6..0956642 100644 --- a/src/freeglut_teapot.c +++ b/src/freeglut_teapot.c @@ -84,7 +84,7 @@ /* -- PRIVATE FUNCTIONS ---------------------------------------------------- */ -static void teapot( GLint grid, GLdouble scale, GLenum type ) +static void fghTeapot( GLint grid, GLdouble scale, GLenum type ) { #if TARGET_HOST_WINCE int i, numV=sizeof(strip_vertices)/4, numI=sizeof(strip_normals)/4; @@ -183,7 +183,7 @@ static void teapot( GLint grid, GLdouble scale, GLenum type ) void FGAPIENTRY glutWireTeapot( GLdouble size ) { /* We will use the general teapot rendering code */ - teapot( 10, size, GL_LINE ); + fghTeapot( 10, size, GL_LINE ); } /* @@ -192,7 +192,7 @@ void FGAPIENTRY glutWireTeapot( GLdouble size ) void FGAPIENTRY glutSolidTeapot( GLdouble size ) { /* We will use the general teapot rendering code */ - teapot( 7, size, GL_FILL ); + fghTeapot( 7, size, GL_FILL ); } /*** END OF FILE ***/