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: Basic OpenGL question

  1. #1
    Intern Newbie
    Join Date
    Nov 2006
    Location
    California
    Posts
    37

    Basic OpenGL question

    hi, didn't know where to ask this.

    Will OpenGL work minus a video card?

    Or, does OpenGL resort to software rendering in the absence of any kind of hardware accelerating device on a machine?

    I have read a lot to try to get this answer, but still not sure.

    A reference would be good.

    Thanks very much.

  2. #2
    Intern Contributor
    Join Date
    Sep 2010
    Posts
    74

    Re: Basic OpenGL question

    It depends on what platform you run it on. On GNU/Linux systems, Mesa3D (which is technically not OpenGL, but still follow the specs) is almost always present to do software rendering. On Windows, there's a software renderer for older OpenGL versions. Don't know about other systems.

  3. #3
    Junior Member Regular Contributor
    Join Date
    Jun 2009
    Location
    FL , USA
    Posts
    194

    Re: Basic OpenGL question

    Quote Originally Posted by gordon1
    Will OpenGL work minus a video card?
    No. But opposite is true. As replied earlier by a poster, Mesa3D , D3D, Win Gdi are other options.
    Or, does OpenGL resort to software rendering in the absence of any kind of hardware accelerating device on a machine?
    Yes.

  4. #4
    Super Moderator OpenGL Guru
    Join Date
    Feb 2000
    Location
    Montreal, Canada
    Posts
    4,421

    Re: Basic OpenGL question

    Intel does provide OpenGL drivers although their driver quality is not as good as nvidia and AMD.

    Or, does OpenGL resort to software rendering in the absence of any kind of hardware accelerating device on a machine?
    OpenGL doesn't decide. Each vendor writes their own GL driver. In this case, Intel decides how they use their chips capabilities.
    ------------------------------
    Sig: http://glhlib.sourceforge.net
    an open source GLU replacement library. Much more modern than GLU.
    float matrix[16], inverse_matrix[16];
    glhLoadIdentityf2(matrix);
    glhTranslatef2(matrix, 0.0, 0.0, 5.0);
    glhRotateAboutXf2(matrix, angleInRadians);
    glhScalef2(matrix, 1.0, 1.0, -1.0);
    glhQuickInvertMatrixf2(matrix, inverse_matrix);
    glUniformMatrix4fv(uniformLocation1, 1, FALSE, matrix);
    glUniformMatrix4fv(uniformLocation2, 1, FALSE, inverse_matrix);

  5. #5
    Junior Member Regular Contributor
    Join Date
    Jun 2009
    Location
    FL , USA
    Posts
    194

    Re: Basic OpenGL question

    Intel does provide OpenGL drivers although their driver quality is not as good as nvidia and AMD.
    True.

    What I meant was in the absence of accelerator, the onus lies on the chip set.

Posting Permissions

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