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

Thread: not using hardware acceleration for opengl?

  1. #1
    Intern Contributor
    Join Date
    Apr 2002
    Posts
    85

    not using hardware acceleration for opengl?

    I have a GEFORCE 256 card and win2000. I downloaded the latest driver and installed it from nvidia.

    But, I do this:

    char *card = (char*)glGetString(GL_VENDOR);
    printf("3D Card Vendor: [%s]\n",card);
    card = (char*)glGetString(GL_RENDERER);
    printf("3D Card : [%s]\n",card);

    and it says "Microsoft Corporation" and "GDI Generic".

    But under hardware devices in windows it says it is using the nvidia driver.

    I tried setting my desktop to a low resolution, but that didn't help.

    in the registry under WindowsNT\currentversion\opengldrivers, its default says nothing. Also it has a folder for RIVATNT (That seems strange)

    The dxdiag shows my NVidia 256.

    Does my bit depth matter?

    Could somebody please help me? Thanks!
    P4 2Ghz, GEFORCE4, 512 Meg RAM, WIN2000, VStudio 6.0

  2. #2
    Member Regular Contributor
    Join Date
    Apr 2001
    Location
    Fort Collins, Colorado
    Posts
    447

    Re: not using hardware acceleration for opengl?

    Are you checking the Vendor and Renderer values after creating the GL rendering context?

  3. #3
    Intern Contributor
    Join Date
    Apr 2002
    Posts
    85

    Re: not using hardware acceleration for opengl?

    Yes.
    P4 2Ghz, GEFORCE4, 512 Meg RAM, WIN2000, VStudio 6.0

  4. #4
    Intern Contributor
    Join Date
    Jul 2001
    Posts
    64

    Re: not using hardware acceleration for opengl?

    Do you have a tool that can enumerate the available pixelformats? This may help in determining why the pixel format that you are choosing is not hardware accelerated.

    Pat

  5. #5
    Senior Member OpenGL Pro
    Join Date
    Jun 2000
    Location
    Shreveport, LA, USA
    Posts
    1,757

    Re: not using hardware acceleration for opengl?

    Don't worry about the RIVATNT key in the registry, that is normal. I see it in the registry of every computer that has a TNT or Geforce, and I assume it has to do with the unified nature of the NVIDIA drivers and/or legacy issues.

  6. #6
    Intern Contributor
    Join Date
    Apr 2002
    Posts
    85

    Re: not using hardware acceleration for opengl?

    Do you know where I could get that tool?

    Is there a standard pixel format that I should set my program to when initializing, that should 100% use hardware acceleration on a GEFORCE256?
    P4 2Ghz, GEFORCE4, 512 Meg RAM, WIN2000, VStudio 6.0

  7. #7
    Intern Contributor
    Join Date
    Apr 2002
    Posts
    85

    Re: not using hardware acceleration for opengl?

    I got it working now! I had to change my desktop to 32 bit color. I guess the card doesn't support anything lower than that?

    Thanks for the help guys. ;-)
    P4 2Ghz, GEFORCE4, 512 Meg RAM, WIN2000, VStudio 6.0

Posting Permissions

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