I just purchased the fifth edition of the OpenGL SuperBible. I'm very pleased that they've avoided using deprecated functionality but their examples make use of GLTools. GLTools provides a slew of useful functions for rendering simple 3D objects and managing the view frustrum, camera, and transformation matrices.

This is all great but the abstraction provided hides low-level details and I'm having difficulty moving to code where I can't use GLTools -- for example, pyopengl. The vast majority of tutorials I've seen online make use of immediate mode, which I'm trying to avoid. Those that use glDrawArrays make use of glEnableClientState, which I'm also trying to avoid.

What I'm looking for is introductory tutorials that are fully OpenGL 3.x compliant. If that's too tall of an order, perhaps a laundry list good "starting point" functions would be in order.

Thank you for your time!

link|improve this question
What's wrong with ripping out the code sequences that GLTools is using? – genpfault Dec 30 '10 at 14:52
feedback

3 Answers

up vote 0 down vote accepted

A good starting point is NeHe. Some of the tutorials are dated, but its basically the "Rosetta Stone" of OpenGL. I would also suggest OpenGL 4.x since its out and you want to start new. Swiftless also has a good selection of tutorials.

link|improve this answer
I've already checked out NeHe but the Swiftless tutorials look very promising. Thank you! – Jonba Dec 30 '10 at 1:55
2  
Except for creating the window with raw WinAPI... it never hits me where's the point of creating the window in a platform-dependent way in order to use a platform-independent API... Especially when there exist reliable wrappers like GLFW. The rest looks fine, though. – Kos Dec 30 '10 at 12:00
+1 agreed. I usually substitute that for GLUT. – EnabrenTane Dec 30 '10 at 22:42
github.com/jckarter/ch4-flag Is also a good tutorial – EnabrenTane Jan 13 '11 at 23:23
I completely agree with Damon. NeHe is bad because it's horribly outdated. You should start with up-to-date tutorials right away. – LukaD 2 days ago
feedback

Stay away from NeHe, the tutorials are hopelessly outdated and contain a lot of "problematic" stuff, too.

For starting with 3.x, try those, they're both up-to-date:

Aurian

Arcsynthesis

link|improve this answer
2  
I agree, and old libraries like glaux.h aren't even supported anymore. The problem with recommending NeHe is exacerbated from still being the number one Google result for "OpenGL tutorial". No wonder so many still swarm to it. – Chris C Oct 4 '11 at 21:27
feedback

https://bitbucket.org/rndblnch/opengl-programmable

a short step by step tutorial to OpenGL programmable pipeline (OpenGL / OpenGL|ES 2.x) for people already familiar with the fixed pipeline. dependencies: python 2.5+, PyOpenGL 3.0.1+

Successive versions of a small but rather complete glut/opengl program that starts from direct mode and is transformed step by step to run exclusively on the programmable pipeline. Look at the diffs between successive version to have an highlight of the changes needed (e.g., https://bitbucket.org/rndblnch/opengl-programmable/changeset/b21131e37ed7).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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