LongMath
02-06-2004, 08:00 AM
I've been working w/ OGL for a while and have a pretty good programming foundation, but I'm getting some errors using Visual C++ .NET on Windows XP that I'm simply baffled by.
When attempting to create a quadric like so:
GLUquadricObj *quadric;
quadric=gluNewQuadric();
using the glu utilities library, I get the following error message:
Could not load type GLUquadric from assembly Strategy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null.
"Strategy" is simply the Solution name for those of you who are unfamiliar with .NET.
I assume my problem has something to do with an out of date glu32.dll file, but I don't know how to build a new one from glu32.lib nor can I find a compatible file on the net. I can use other pieces of the glu library, such as gluPerspective() and gluLookAt(), which confuses me further.
Anyone have any ideas?
When attempting to create a quadric like so:
GLUquadricObj *quadric;
quadric=gluNewQuadric();
using the glu utilities library, I get the following error message:
Could not load type GLUquadric from assembly Strategy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null.
"Strategy" is simply the Solution name for those of you who are unfamiliar with .NET.
I assume my problem has something to do with an out of date glu32.dll file, but I don't know how to build a new one from glu32.lib nor can I find a compatible file on the net. I can use other pieces of the glu library, such as gluPerspective() and gluLookAt(), which confuses me further.
Anyone have any ideas?