Getting started with Qt + OpenGL

I want to develop projects based on the 2010 release of OpenGL Superbible with Qt. I want to do things like moving lights, changing their colors, activating / deactivating textures, etc. Simple things. The Qt documentation I've found so far has been huge. Where can I find a simple tutorial suitable for my simple needs?

+5
source share
3 answers

Have you worked with OpenGL yet? I know that this is not the answer you want to hear, but I believe that the latest version of OpenGL has an extremely steep learning curve. I highly recommend learning OpenGL 1.x with "direct mode" (calls to glBegin, glEnd), then learning about vertex arrays and displayed lists, as well as vertex buffer objects and index buffer objects, and finally shaders.

NeHe has some great guides to get started with OpenGL 1.x, and after playing with it for a week or two, it's usually pretty easy to learn about VA, DL, and then VBO. Shaders are pretty tough and actually have their own language (GLSL). Once you understand all this, you can probably go to the latest OpenGL stuff a lot easier.

"" OpenGL 4.x, Swiftless tutorials, , , .

!

+9

Qt OpenGL ?

, - .

!

+4

You may be interested in: http://www.libqglviewer.com/

+1
source

All Articles