Part of the Khronos Group
OpenGL.org

The Industry's Foundation for High Performance Graphics

from games to virtual reality, mobile phones to supercomputers

Results 1 to 4 of 4

Thread: GLU

  1. #1
    Junior Member Newbie
    Join Date
    Apr 2001
    Posts
    2

    GLU

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

    Greetings,
    Adrian.

  2. #2
    Senior Member OpenGL Guru zed's Avatar
    Join Date
    Jul 2000
    Location
    S41.16.25 E173.16.21
    Posts
    2,609

    Re: GLU

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

  3. #3
    Advanced Member Frequent Contributor
    Join Date
    Feb 2000
    Posts
    662

    Re: GLU

    you can query the glu version by using

    glGetString(GLU_VERSION)

  4. #4
    Senior Member OpenGL Pro
    Join Date
    Feb 2000
    Location
    France
    Posts
    1,118

    Re: GLU

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

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

    Code :
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •