GLU

Hi,
What is the last implementation of GLU
library for MSWindows? The last I met
was GLU1.0 - am I wrong?

Greetings,
Adrian.

ive got 1.3, i pretty sure this is the newest version. though it is quite old.

you can query the glu version by using

glGetString(GLU_VERSION)

Originally posted by Gorg:
[b]you can query the glu version by using

glGetString(GLU_VERSION)[/b]

You will get a GL_INVALID_ENUM error if you try this !
Actually, the correct call is:

gluGetString(GLU_VERSION);

Which makes perfect sense: you can use the GL library without the GLU so glGetString does not know what GLU is !

Regards.

Eric