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 2 of 2

Thread: glaux.dll

  1. #1
    Guest

    glaux.dll

    I've compiled a project using libglaux.a
    (and probably libglu32.a; I'm not quite sure), I got the messages (displayed as an error dialog on Win95):


    A required DLL GLAUX.DLL was not found?????

    where can I find this dll ? Does anyone have ?

  2. #2
    Junior Member Newbie
    Join Date
    Oct 2000
    Location
    chicago, il, usa
    Posts
    12

    Re: glaux.dll

    Don't use glaux... it's kind of obsolete. Use GLUT instead. you can find instructions and source for installing GLUT for windows at:
    http://www.xmission.com/~nate/glut.html

    After installing this (VERY easy with VC++ 6.0)

    If your using VC++ 6.0

    1. Create a project for a console app.

    2. Link with glut32.lib, glu32.lib, opengl32.lib

    3. Include "glut.h" - this includes gl.h and glu.h, and should be enough to get you started. You DON'T need "windows.h"

    Btw thanks to MikeC for this info, I read it off a different thread he posted to last night and got everything set up fine.

    -J0ey4

Posting Permissions

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