Are there huge differences in OpenGL 3.x vs 2.x? Is it waste of time learning OpenGL 2.x or are they both following the same concept? I think i read somewhere that 2.x was state based and that 3.x was not, is that correct?
|
feedback
|
|
Learn whatever has the most learning materials written about it. NeHe's tutorials are a good place to start. I did a little OpenGL work a few months ago, and while I don't remember the version I was programming to, I can tell you that it's the concepts that are the most important. This is especially true when you're just beginning and not dealing with shaders and whatnot. | |||||||
feedback
|
|
Be careful. OpenGL 3 deprecates a lot of functions, especially those of the early days of OpenGL. If you start with outdated tutorials (like most of NeHe), you will most probably become accustomed an outdated style of OpenGL 2. There is no fixed function pipeline in OpenGL 3 (if you don't use the backward compatibility features). You have to use shaders. There is no glBegin/glEnd anymore. You have to use vertex buffers. Both are already available in OpenGL 2, but most tutorials start with glBegin/glEnd and setting OpenGL color properties. This is a very important difference. OpenGL 2 provides countless ways to put something on the screen, each of which is covered in at least one popular tutorial. OpenGL 3 drops many of them, including the "beginners' subset" of OpenGL 2 (fixed function glBegin/glEnd). So if you want to target OpenGL 3 in the long term, go for it right from the start. There's nothing more demotivating than being stuck in a dead end. | |||||||||||||
feedback
|
|
They're almost entirely backwards compatible, so anything you learn with an older version is going to apply to the later versions just fine. If you have to 'aim' somewhere in particular, 2.0 is probably a good choice. If you look at the OpenGL Wikipedia page, you can see what was added to the various versions, and decide for yourself which features you think you'll need. | |||
feedback
|
|
I am reading through "Learning Modern 3D Graphics Programming", and while I don't have hardware to actually use OpenGL 3 yet, it's helping me get the concepts straight in my mind such that I should be able to ditch 1.1-style and move to 3 once I do have hardware to work with. | |||
|
feedback
|
|
I think the modern shader only style is the future of OpenGL and real-time 3D graphics. I would suggest to start with OpenGL 3 right away. On the other hand the old-style deprecated OpenGL is easier to learn and it is easier to do simple things, without understanding the whole API. But no matter if you skip the old-style fixed-function or not or if you use Direct3D or OpenGL, it is important that you also understand the principles and inner workings of a graphics pipeline, as I often (not always) see people, who have questions about OpenGL and why their code does not work and they seem to have no idea about computer graphics and what the respective OpenGL functions really do and mean. EDIT: Also, have a look at this question for some book recommendations, depeding on you decision. | |||
|
feedback
|
|
I find this tutorial very easy to follow and use and it is for OpenGL 3 http://duriansoftware.com/joe/An-intro-to-modern-OpenGL.-Table-of-Contents.html | |||
|
feedback
|