Where can I get glu32.dll 1.3 ?

I’m looking for GLU version 1.3 for Windows. Is it available somewhere?

I’m used to getting OpenGL functionality over 1.1 by using wglGetProcAddress. Is there a similar mechanism to get GLU functionality over 1.2?

afaik the glu hasnt been changed. are you missing something in it?

The following function are new in GLU 1.3:

gluBuild1DMipmapLevels
gluBuild2DMipmapLevels
gluBuild3DMipmapLevels
gluBuild3DMipmaps
gluCheckExtension
gluNurbsCallbackData
gluUnProject4

Is it possible to access them with some mechanism similar to wglGetProcAddress ?

I have a compiled DLL for Windows.
I think gluBuild3DMipmaps doesn’t work but for the rest, just use GetProcAddress.
http://www.geocities.com/vmelkon/glu.html

Thanks a lot V-man, I’ll give it a try.

V-man,

Your glu32.dll lacks the gluNurbs… functions, even those present in GLU 1.2. Do you remember any problem compiling these?

I guess I have forgotten to export them.
I’ll fix it up when I have time.

I’m gone fix the 3D mipmap function too.

ok, its up.

I havent tested everything but it works fine for me.

Hi V-man.

Your last version seems complete, except for:

gluNurbsCallbackData
gluNurbsCallbackDataEXT

both should point to the same function.

I am the maintainer for the OpenGL package for Cygwin, an open-source project (see http://www.cygwin.com ). Would you like me to eventually incorporate your version of glu32.dll to that package?

[This message has been edited by bleau (edited 04-07-2003).]