Upgrading OpenGL Drivers

5,659

The reason for this is that the Ironlake graphics architecture is not ivy bridge or sandy bridge It's Clarkdale/Arrendale gen technology which, while the hardware strictly speaking supports the extensions, does not have these features implemented in the relevant graphics drivers.

You could take a stab at adding them yourself if you have experience with driver programming.

http://www.phoronix.com/scan.php?page=news_item&px=MTMxMDQ

The relevant section, in case the link goes down:

"While Ironlake (Clarkdale/Arrandale) -- the generation of Intel hardware prior to Sandy Bridge -- was designed during the OpenGL 2.1 days, much of the OpenGL 3.0 / GL Shading Language 1.30 functionality can be implemented for this hardware. As Intel Linux customers were quick to discuss when sharing this morning there's now OpenGL ES 3.0 for Sandy Bridge (the embedded/mobile GL variant), driver developers quickly lose interest in older hardware.

One Phoronix reader pointed out this bug report with commentary by Kenneth Graunke from January:

Team Fortress 2 requires some functionality from OpenGL 3.0 and GLSL 1.30, which we currently only support on Sandy Bridge and newer hardware. Unfortunately, Ironlake and earlier currently do not.

It should be possible to implement the missing functionality on Ironlake. The code is open source, and the hardware documentation is freely available on the web(*), so in theory, anyone could make progress toward this.

Sadly, our team is extremely busy working on newer hardware and is unlikely to have time to implement GL 3.0 support for Ironlake...at least not any time soon. I sincerely apologize for this; we'd all love to see it happen too.

(*) https://01.org/linuxgraphics/documentation/driver-documentation-prms

Basically, Intel Linux driver developers are busy working on newer hardware and other features, so missing functionality for older Intel products likely won't come. But since Intel does provide NDA-free programming documentation, other capable developers should be able to provide the said features. This bug comment was in response to Ironlake not working for Valve's Source Engine games on Linux.

While I do own some Ironlake hardware, I would much rather see Intel working on the newer hardware support. Even if the Intel i965 DRI driver implemented the necessary GL3/GLSL1.30 features for the Source Engine games, it would still be damn slow. It wasn't until Sandy Bridge that Intel graphics really got their act together in terms of integrated graphics performance. Ironlake isn't too capable and the newer (and yet-to-be-released) hardware is much more exciting and will open new doors. Intel also, obviously, wants you to upgrade your hardware too."

So the simple answer is: Intel doesn't care enough or have any incentive to implement the features, but at least you /could/ implement them if you wanted and had the skillset/funding to do so. I would recommend upgrading your hardware if you need OGL 3.x features as they are not and most likely will not be supported under the Ironlake architecture.

Share:
5,659

Related videos on Youtube

Jayhello
Author by

Jayhello

Updated on September 18, 2022

Comments

  • Jayhello
    Jayhello over 1 year

    I'm trying to learn OpenGL and most tutorials on the internet only offer guidelines for OpenGL 3.0 and higher. So I looked for my OpenGL version and

    glxinfo | grep OpenGL
    

    yields this:

    OpenGL vendor string: Intel Open Source Technology Center
    OpenGL renderer string: Mesa DRI Intel(R) Ironlake Mobile 
    OpenGL version string: 2.1 Mesa 10.0.4
    OpenGL shading language version string: 1.20
    

    So I went to the offical site for these drivers: https://01.org/linuxgraphics/

    I installed the latest version but it still says the same. I know my hardware is capable of doing some DirectX11 rendering so why wouldn't it support OpenGL3.0?

    Oh, I forgot: I'm using Fedora 20 64bit

    • Cristian Ciupitu
      Cristian Ciupitu over 9 years
      I'm getting OpenGL version string: 3.0 Mesa 10.1.5 on HD 4000 and mesa-dri-drivers-10.1.5-1.20140607.fc20.x86_64.
  • Jayhello
    Jayhello about 10 years
    Ok - I did everything as you said and installed every .rpm file in the RPMS/x86_64 directory. But it still says OpenGL 2.1 . But I noticed something: in the mesa.spec file was --enable-texture-float already set...
  • slm
    slm about 10 years
    @haansn08 - I noticed this as well when I went through it too.