GL_EXT_texture_compression_s3tc error when opening a Steam game

20,973

This is just saying that it needs a driver that supports than GL extension. If you had an Nvidia card then installing the latest proprietary ones (The ones that come in the Xorg Edgers PPA) will solve this issue as seen in the following image:

enter image description here

But since you have an Ati then you are doomed... just kidding ^^. Simply do the following steps in order to have full support (This is my quick way of solving video support issues like this):

  1. Open Dash by pressing the SUPER key (Which is called the Windows key in Windows, in my case it still has the Windows logo on it and I think I got the flu by pressing on it yesterday). Now type terminal. It should look something like this:

    enter image description here

    Now press ENTER and a terminal window should appear similar to the following:

    enter image description here

    Now type the following line to install the Xorg Edgers PPA:

    sudo add-apt-repository ppa:xorg-edgers/ppa -y

  2. Update and Upgrade system so the system knows you have included Xorg-Edgers:

    sudo apt-get update && sudo apt-get upgrade

  3. Install the latest Ati Radeon Drivers which you can do in any of the following ways. I will include them in the order I would do them first (Only do one of the following options):

    • Installing the fglrx-installer package (Which is the one that shows in Xorg-Edgers:

    sudo apt-get install fglrx-installer

    After this, reboot the computer and you should be finished installing with the Ati Driver. I put this one here first since it is the one that is more compatible with Ubuntu, is updated, less bugs and easy to install. Go to step 4 if you did this.

    If you had an Nvidia card, it would also be easier to do just by reading How do I install the Nvidia drivers?

    • Type Software Sources in Dash. Open the Software Sources Window and go to the last TAB that says Additional Drivers. Look for the proprietary drivers for your Ati there. For Nvidia it looks like the following image but it will be the same for Ati (Just imagine all Nvidia drivers mentioned there to be Ati ^^):

    enter image description here

  4. After making sure you have the latest driver that supports your video card and have only installed one of the ones mentioned above, reboot the system and test again. The latest driver makes sure your video card supports the S3TC texture compression. To test this you can do one of the following options:

    • Run sudo amdcccle in the terminal. If the Catalyst Control Center appears you are good to go.

    • Type Catalyst in Dash and see if it appears there.

    • Type fglrxinfo and see if it shows information about your video card. If you get "Command not found" or something similar, the drivers are not installed yet.

Lastly if you get a message similar to Required OpenGL extension GL_EXT_texture_compression_s3tc it just means that, either your video card does not support this compression or you are missing installing the correct libraries. If it is the libraries do the following:

sudo apt-get install libtxc-dxtn-s2tc0

I want to also add that there are a couple or articles in PHORONIX about the S3TC issues regarding patents and open source work. It is a good reading: http://www.phoronix.com/scan.php?page=search&q=S3TC

VIRTUALBOX - All of the above is for cases where you were running Steam in Ubuntu on the host, not on the Guest. Since you have just limited Ubuntu to what Virtualbox can offer, I will point you to this link Sharing between Host and Guest in Virtualbox which should cover the installation of the Guest Addition for Ubuntu. After you have done both, installing the driver and installing the Guest Addition, if the problem is still there, this basically means that Virtualbox is not letting the driver (Inside Virtualbox) read directly the mentioned GLX extension. So the problem would go from an Ubuntu problem to a Virtualbox one where you should go to the Virtualbox site and explain to them the problem.

Let me know if you solve the problem with this little tips. If not I can go deeper with more information. Just trying to make it as simple as possible.

Share:
20,973

Related videos on Youtube

user132520
Author by

user132520

Updated on September 18, 2022

Comments

  • user132520
    user132520 almost 2 years

    So I was trying to play Team Fortress 2 when this message appears:

    Error! Required OpenGL extension "GL_EXT_texture_compression_s3tc" is not supported. Please install S3TC texture support.

    Running on VirtualBox,Ubuntu 12.04.1, Intel 3550, Asus P8Z77 V LX and Radeon HD 7750. 12MB of video memory dedicated to Ubuntu on VirtualBox.

    • fouric
      fouric over 11 years
      If by "Running on VirtualBox", you mean that you are running Ubuntu on VirtualBox, be aware that VirtualBox has a slightly less then stellar performance record regarding graphics acceleration, and as such this could be considered a problem with VB, not Ubuntu. Please consider attempting a direct installation of Ubuntu and test to see whether this is still an issue.
  • Luis Alvarado
    Luis Alvarado over 11 years
    @user132520 Let me update the question so you only do exactly what it says, step by step.
  • Eric Martindale
    Eric Martindale over 6 years
    sudo apt-get install libtxc-dxtn-s2tc0 fixed my issue. Thanks!