Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to develop projects based on the 2010 edition of OpenGL's Superbible with Qt. I want to do things like move lights, change their color, activate/deactivate textures, etc. Simple stuff. The Qt documentation I have found so far has been overwhelming. Where can I find a simple tutorial suited to my simple needs?

share|improve this question

3 Answers

Have you done any work with OpenGL yet? I know this isn't the answer you want to hear, but I find the newest version of OpenGL to have an extremely steep learning curve. I strongly suggest learning OpenGL 1.x with "direct mode" (glBegin, glEnd calls), then learning about vertex arrays and display lists, and then vertex buffer objects and index buffer objects, and finally shaders.

NeHe has some excellent tutorials to get you started on OpenGL 1.x, and after playing with that for a week or two, it's usually pretty easy to learn about VA's, DL's, and then VBO's. Shaders are pretty hard and actually have their entire own language (GLSL). After you understand all that stuff, you can probably move on to the latest OpenGL stuff a lot easier.

If you're looking to "skip" straight to the latest OpenGL 4.x stuff, Swiftless tutorials will get you started, but again, it's an extremely steep learning curve.

Good luck!

share|improve this answer
Thanks, I've worked before with OpenGL's fixed pipeline functionality. I'm learning shaders now and I wanna move to something beyond Glut for my window managing. – omgzor Apr 16 '11 at 2:23
You're welcome. I've moved the opposite way from you. Something lower than Glut to do my window managing: me. Call me a control freak, but I like to deal with it all myself. – arasmussen Apr 16 '11 at 2:25
IMHO there's nothing about Immediate Mode, that makes things easier to comprehend. Vertex Arrays are just as understandable. Heck, I think learning Immediate Mode raises some misconception, that are difficult to shed when it comes to Vertex Arrays. So it is my conviction that Immediate Mode should not be taught. – datenwolf Apr 17 '11 at 9:49
The implementation (between VA's and IM) might be just as easy to understand. However, understanding what's going on in the background is a little more complicated. The fact that Immediate mode is passing (to the gpu) each vertex/color/texcoord every single frame, and that VA's are sending a pointer to an array containing all of the data, and VBO's are storing the arrays on the GPU and then telling the GPU which part of the stored data to use. All this is hard to understand from a beginner's perspective, if they're just focused on the code and what's going on in the background. – arasmussen Apr 17 '11 at 16:04

Have you tried the Qt OpenGL examples here?

Maybe you will find something useful in there.

Good Luck!

share|improve this answer

You might be interested in this: http://www.libqglviewer.com/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.