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

i would like to know what the best Books for learning OpenGL with C++ the preferably dont use GLUT i am leaning towards getting the OpenGL super bible...but i thought i should ask here before i went and bought it. i know this is probably a dup...but all the posts i have seen are out dated... :"( or any other wealth of information that is up to date about OpenGL with C++ ( i am using nehe atm)

share|improve this question
possible duplicate of Getting started with OpenGL – Magnus Skog May 8 '11 at 8:41
@Magnus are those answers up to date? As OP points out he didn't find anything up to date, and that question is from oct 2008 – Default May 8 '11 at 9:09
The red book is definitely up to date if you want to learn opengl with c++. I don't think its a good idea to start with a book about OGSL. – Magnus Skog May 8 '11 at 9:14
hm, just read this post. Is it possible to merge questions? – Default May 8 '11 at 9:17
@Magnus Skog i have read a large number of reviews about red book 7th..every review i read said they didn't like the vast majority because it talked about deprecated material. – I Phantasm I May 8 '11 at 9:22

closed as not constructive by Bill the Lizard Sep 27 '11 at 14:02

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 17 down vote accepted

Personal opinion as a C++ developper by trade trying to learn modern OpenGL (i.e. programmable pipeline only, basically core profile OpenGL 3 and above) in his spare time !

Online resources

Forget Nehe and the vast majority of online tutorials: they usually rely on at least some deprecated stuff, when they're not chock full of long dead fixed pipeline concepts. If you're targeting somewhat modern hardware and don't need compatibility with really crippled hardware (e.g. old Intel integrated graphics), they will usually lead you astray.

One of the few modern and well written online tutorials I found is here

Online resources are however very useful for information on specific topics, instead of generic OpenGL tutorials. NVidia's GPU Gems books are a good example.

Books

I skipped the Red Book, based on the poor reviews panning it for detailing deprecated functionality.

I own the Orange Book : it's a good resource, with some caveats:

  • its assumed audience seems to be programmers already familiar with the fixed-function pipeline who want to move on to shaders.
  • it sometimes uses OpenGL features that are deprecated with OpenGL3 (e.g. texture coordinates generation, OpenGL matrix stack and depth map texture lookup in the Shadow maps section).

Still, a worthwhile book, though probably not the first to buy.

I also own the Superbible (5th Edition). It's perhaps the best starting point, but it is not without it's flaws:

  • As Christian noted in his answer, it starts from a homemade framework that abstracts away some of the complexities of dealing with modern OpenGL. Not a bad approach but it does mean you are tied to the book's framework for roughly the first half of it.
  • I'm no OpenGL expert (by far) but some of the "advanced" material seems strange to me. For example, the approach offered for HDR tone-mapping has very bad performance characteristics and is inconsistent with the methods I could find online (see my question on SO and Rotoglup's answer to it).
  • some subjects are completely absent, for example techniques for generating shadows.

Finally, I recently bought Real-time Rendering (3rd edition). It's a much more general book but it does provide a good overview of a wide variety of rendering techniques, with rationales for and against each one and all the brain-melting theory you could ever want ;) It's in no way an OpenGL tutorial (it's fairly API agnostic and rarely offers any code, focusing mostly on theory) but it's a good complement to the sometimes a little too technically focused Superbible !

share|improve this answer
2  
I also own Real-Time Rendering and although its not good for learning OpenGL, its a really useful and valueable ressource for understanding many concepts of real-time rendering and computer graphics in general, which people starting with OpenGL often lack. – Christian Rau May 9 '11 at 11:36
2  
Regarding online ressources: Eddy Luten has just started an online OpenGL book that concentrates completely on forward compatible core features of GL3/4. Although it will surely take some time till it's complete, I'm really looking forward to it. – Christian Rau May 9 '11 at 11:41
thanks for the response :D it seem the super bible is a good book for a newbie at OpenGL :D...but does the super bible use glut or free-glut?.Also Christian thanks for the link. – I Phantasm I May 10 '11 at 6:13
The Superbible uses freeglut for most of it's code. – Bethor May 10 '11 at 6:38
Thanks :D...does the super bible contain any info on collision detection...or would that be covered by a game creation book? – I Phantasm I May 10 '11 at 11:14
show 3 more comments

I would suggest the newest edition of the Super Bible. The Red Book is still oriented on the old style deprecated OpenGL. The new Super Bible completely drops deprecated material and is therefore more future ready (but on the other hand you need GL3/4 hardware ~ DX10/11).

The problem with the super bible is, that in the beginning they use prebuilt functions delivered with the book, which do exactly the things dropped out from the core and in the later chapters you learn to do these things yourself. This is the drawback of the new OpenGL: it is just a bit harder to do simple things without understanding the whole API (which on the otherhand is simpler than the old API).

The Orange Book is solely about the OpenGL Shading Language and if you do not have knowledge of OpenGL, I would not suggest it.

So to sum up: If you want to learn the old style OpenGL first, the Red book combined with the Orange book is just perfect and also gives you a good understanding of real-time computer graphics. But if you want to start with the modern and future way of OpenGL right away, I suggest the NEWEST super bible.

share|improve this answer
hmm great answer... i think i am leaning more towards the super bible...but you have given me alot to think about :D, is the super bible in C++? – I Phantasm I May 8 '11 at 22:08
1  
@ I Phantasm I Yes, its C++. – Christian Rau May 8 '11 at 22:43

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