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

Thread: Texture problem with new Nvidia driver

  1. #1
    Junior Member Newbie
    Join Date
    Oct 2000
    Posts
    18

    Texture problem with new Nvidia driver

    After upgrading my GeForce FX 5900 Ultra with the new Nvidia drivers 56.72 all my textures has got dark borders around them.
    All problems dissapeares if I change back to the older 45.23 drivers.
    Im wondering if anyone else got the same problem or if im the only "lucky" one.

  2. #2
    Super Moderator OpenGL Guru dorbie's Avatar
    Join Date
    Jul 2000
    Location
    Bay Area, CA, USA
    Posts
    4,388

    Re: Texture problem with new Nvidia driver

    Just a guess but behaviour might have changed w.r.t. GL_CLAMP vs GL_CLAMP_TO_EDGE, try changing to GL_CLAMP_TO_EDGE to support the behaviour you used to expect from GL_CLAMP.

  3. #3
    Junior Member Newbie
    Join Date
    Oct 2000
    Posts
    18

    Re: Texture problem with new Nvidia driver

    Thanx for your reply!!

    I maybe a nuthead here but my compiler doesnt recognize CLAMP_TO_EDGE.
    Im I using an old library or am I just old.

    Cheers
    Micke

  4. #4
    Super Moderator OpenGL Guru dorbie's Avatar
    Join Date
    Jul 2000
    Location
    Bay Area, CA, USA
    Posts
    4,388

    Re: Texture problem with new Nvidia driver

    You may need to update your header files. Clamp to edge was an extension but now it's standard (in 1.2 core). It's worthwhile including gl.h and glext.h, especially on windows but for something simple like a clamp token just an up to date gl.h will do with nothing else required. Any SDK from any manufacturer will include this, but it's best to get the extension header from OpenGL.org.

    Intel has a package on this place that includes an up to date gl.h and the wrappers to use core calls without getprocaddress function pointers.

    Get it here:

    http://oss.sgi.com/projects/ogl-sample/sdk.html

  5. #5
    Junior Member Newbie
    Join Date
    Oct 2000
    Posts
    18

    Re: Texture problem with new Nvidia driver

    Thanks a lot ,man

Posting Permissions

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