Qt 6.11 is out! See what's new in the release
blog
Kubuntu 10.11 and OpenGL
General and Desktop
6
Posts
3
Posters
5.7k
Views
1
Watching
-
Use standard apt-get way to get OpenGL stuff. You have to install MESA dev packages. There are many available, I usually install most of them ;)
Example packages:
- libgl1-mesa-dev
- libglu1-mesa-dev
- libopenvg1-mesa-dev
- libglw1-mesa-dev
Those should also pull remaining packages as dependencies.
-
Not sure. Usually, I keep installing new mesa packages as long as there are any errors. Usually works. I've been using it to run OpenGl in Qt5, so it should also work in Qt4.
-
These two packages will be enough (in theory...) for opengl:
sudo apt-get install libgl-dev
sudo apt-get install libglu-devAnd of course, in your *.pro file for QtOpenGL module:
QT += opengl