Fixed bug #1079530 (glutGetProcAddress and geometric objects).
authorSven Panne <sven.panne@aedion.de>
Fri, 31 Dec 2004 13:44:06 +0000 (13:44 +0000)
committerSven Panne <sven.panne@aedion.de>
Fri, 31 Dec 2004 13:44:06 +0000 (13:44 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@526 7f0cb862-5218-0410-a997-914c9d46530a

ChangeLog
src/freeglut_ext.c

index 9850a9a..26fd4df 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -693,3 +693,9 @@ Only UNIX_X11 is supprted at this point, for lack of knowledge.
 
 (184) Per demands of project owner, offscreen rendering is now removed
 from freeglut.
+
+***************************************************************************
+* Changes on December 31, 2004.
+***************************************************************************
+
+(185) Fixed bug #1079530 (glutGetProcAddress and geometric objects).
index 04b3b6e..bcda7a2 100644 (file)
@@ -178,8 +178,10 @@ static struct name_address_pair glut_functions[] =
    { "glutStrokeString", (void *) glutStrokeString },
    { "glutWireRhombicDodecahedron", (void *) glutWireRhombicDodecahedron },
    { "glutSolidRhombicDodecahedron", (void *) glutSolidRhombicDodecahedron },
-   { "glutWireSierpinskiSponge ", (void *) glutWireSierpinskiSponge },
-   { "glutSolidSierpinskiSponge ", (void *) glutSolidSierpinskiSponge },
+   { "glutWireSierpinskiSponge", (void *) glutWireSierpinskiSponge },
+   { "glutSolidSierpinskiSponge", (void *) glutSolidSierpinskiSponge },
+   { "glutWireCylinder", (void *) glutWireCylinder },
+   { "glutSolidCylinder", (void *) glutSolidCylinder },
    { "glutGetProcAddress", (void *) glutGetProcAddress },
    { "glutMouseWheelFunc", (void *) glutMouseWheelFunc },
    { NULL, NULL }