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

Thread: glaux's auxDIBImageLoad

  1. #1
    Guest

    glaux's auxDIBImageLoad

    I've read in a documentation that the GLAUX is obsolete and instead I was told to use GLUT. My question is is there a function in GLUT that does the same thing as auxDIBImageLoad?

  2. #2
    Junior Member Regular Contributor
    Join Date
    Oct 2002
    Posts
    205

    Re: glaux's auxDIBImageLoad

    no there is not. Glut has nothing for texture loading

  3. #3
    Guest

    Re: glaux's auxDIBImageLoad

    thanks...do you know where I can download glaux library for Unix/Solaris?

  4. #4
    Junior Member Regular Contributor
    Join Date
    Oct 2002
    Posts
    205

    Re: glaux's auxDIBImageLoad

    I have been looking for that myself and I dont think it exists for solaris/unix. If all you are looking for is that bitmap texture function just use a different texture format and use a converter to change them from bitmap. Thats what I do.

  5. #5
    Guest

    Re: glaux's auxDIBImageLoad

    the unix version of the glaux can be found here
    http://perso.wanadoo.fr/pascal.obry/...lauxlib.tar.gz

    but the header file (glaux.h) is no where to be found. anyone have any ideas?

  6. #6
    Senior Member OpenGL Guru
    Join Date
    Jun 2000
    Location
    Gastonia, NC, USA
    Posts
    2,096

    Re: glaux's auxDIBImageLoad

    Far as I know Microsoft wrote the glaux library and that is one big reason no support for it in UNIX/linux, though there maybe some port's out there someone has done for UNIX. But still not wise to use the glaux library.

    Yes glut does not have a BMP loader, but with loads of code out there for loading textures it is not really needed.

    But a better solution is to use a TGA loader for your textures. The TGA file format has some features that make it better then the BMP format.

    One is support of an Alpha channel, which can be used to make Transparentcy maps.

    nehe.gamedev.net has a tutor on loading TGA files as textures. also Nate Robins GLUT website has a TGA texture file loader.




    [This message has been edited by nexusone (edited 02-19-2003).]

Posting Permissions

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