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: latest nvidia driver

  1. #1
    Junior Member Newbie
    Join Date
    Feb 2002
    Posts
    27

    latest nvidia driver

    Hi,
    My machine does not support the render-to-texture extension.
    In the nvidia paper, "Opengl - Render to Texture" at http://developer.nvidia.com/docs/IO/...ertexture.pdf,
    it is stated that this extension requires at least 28.40 driver.

    I have version 28.32 and I cannot find a newer version at nvidia.

    Does anyone know where to find this version?
    Thx

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

    Re: latest nvidia driver

    A new version is beta-tested by registered developers. I can't speak for NVIDIA but that usually means that the drivers will be released quite soon...

    Anywya, if you are really desperate, you can always download leaked drivers from some web site (just type "leaked nvidia" in google).

    Regards.

    Eric

  3. #3
    Advanced Member Frequent Contributor
    Join Date
    Jan 2001
    Location
    NVIDIA, Austin, TX
    Posts
    591

    Re: latest nvidia driver

    28.32 drivers do support render-to-texture (I'm running them on my machine right now).

    Make sure you are using wglGetExtensionsStringARB when looking for WGL_ARB_render_texture support.

  4. #4
    Junior Member Newbie
    Join Date
    Feb 2002
    Posts
    27

    Re: latest nvidia driver

    When I return GL_EXTENSIONS string, I have neither "WGL_ARB_extensions_string" nor "WGL_ARB_render_texture".

    Also, I use nvparse to intialize the extensions.

    Don't these extensions need to be in the GL_EXTENSIONS string?

    What platform do you have?

    Thanks

  5. #5
    Advanced Member Frequent Contributor
    Join Date
    Jan 2001
    Location
    NVIDIA, Austin, TX
    Posts
    591

    Re: latest nvidia driver

    Try something like this:

    Code :
    const char *winsys_extensions = "";
    PFNWGLGETEXTENSIONSSTRINGARBPROC wglGetExtensionsStringARB = 0;
    wglGetExtensionsStringARB = (PFNWGLGETEXTENSIONSSTRINGARBPROC)wglGetProcAddress("wglGetExtensionsStringARB");
    if(wglGetExtensionsStringARB)
    {
        winsys_extensions = wglGetExtensionsStringARB(wglGetCurrentDC());
    }
    WGL_ARB_render_texture should show up in the returned string.

    Edit: I'm running win2k on a GF4

    [This message has been edited by jra101 (edited 05-31-2002).]

  6. #6
    Junior Member Regular Contributor
    Join Date
    Feb 2002
    Posts
    124

    Re: latest nvidia driver

    The extension exists and works in 28.32. I wouldn't say it works well. Its slower than you can imagine. But hopefully 28.40 fixes that. It damn well better or I am going to go nuckin futs.

    Devulon

Posting Permissions

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