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)
|
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.
|
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 resourcesForget 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. BooksI 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:
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:
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 ! |
|||||||||||||||
|
|
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. |
|||||||
|