From 3b0a74f07f77280339cf0b3646c713b76a595a54 Mon Sep 17 00:00:00 2001 From: Sven Panne Date: Fri, 31 Dec 2004 13:44:06 +0000 Subject: [PATCH] Fixed bug #1079530 (glutGetProcAddress and geometric objects). git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@526 7f0cb862-5218-0410-a997-914c9d46530a --- ChangeLog | 6 ++++++ src/freeglut_ext.c | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9850a9a..26fd4df 100644 --- 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). diff --git a/src/freeglut_ext.c b/src/freeglut_ext.c index 04b3b6e..bcda7a2 100644 --- a/src/freeglut_ext.c +++ b/src/freeglut_ext.c @@ -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 } -- 1.7.10.4