X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=include%2FGL%2Ffreeglut_ext.h;h=35e857c3bfb2318992fdcdbbc2687ca7ed68e2e0;hb=ff7ec6ed2620d67541b5a29dab54c5459e5183c3;hp=db9c7dbfe58504eb796b1413504e02ee3d9c40dc;hpb=aee00443ad278d5a51f17261b4f2f2d87be73ad3;p=freeglut diff --git a/include/GL/freeglut_ext.h b/include/GL/freeglut_ext.h index db9c7db..35e857c 100644 --- a/include/GL/freeglut_ext.h +++ b/include/GL/freeglut_ext.h @@ -175,6 +175,15 @@ FGAPI void FGAPIENTRY glutWireCylinder( double radius, double height, GLint s FGAPI void FGAPIENTRY glutSolidCylinder( double radius, double height, GLint slices, GLint stacks); /* + * Rest of functions for rendering Newell's teaset, found in freeglut_teapot.c + * NB: front facing polygons have clockwise winding, not counter clockwise + */ +FGAPI void FGAPIENTRY glutWireTeacup( double size ); +FGAPI void FGAPIENTRY glutSolidTeacup( double size ); +FGAPI void FGAPIENTRY glutWireTeaspoon( double size ); +FGAPI void FGAPIENTRY glutSolidTeaspoon( double size ); + +/* * Extension functions, see freeglut_ext.c */ typedef void (*GLUTproc)();