I understand that OpenGL 4 and 3 are fairly similar. What are the differences, especially, what could be better about an OpenGL 4.1 workflow and feature set compared with OpenGL 3.1+?
Additionally, do any of the new extension / core features provide major performance increases over GL3 or just accessibility?
Thanks.
Edit:: @Shezan Baig: Great links, very helpful. Many features seem beneficial enough, in my situation, to use OpenGL 4.1.
Appendix G - K For OpenGL 3.1 features through OpenGL 4.1 features
Khronos Group Release Of OpenGL 4.0 may be "easier to read" :)
Important Differences:
- Sampler Objects
- Instanced Arrays and Shaders
texture_cube_map_array and texture_gather
GLSL 4.0 and dynamic LOD
- shader_subroutine and sample_shading
- separate_shader_objects
- Increase required sizes for texture/renderbuffers
- 64 bit floating point vertex attributes
- get_program_binary
- +2 Tesselation shaders
Can you provide any elaboration on any of these and would you say these are fairly key performance boosters?
OpenGL 3.3 was made to compliment OpenGL 4.0 to incorporate as much of the functionality as they could into older hardware. Choosing between OpenGL 3 and 4, 3.3 may be a better choice sometimes. 4.1 has added GL ES 2.0 compatibility however and some nice features.
One of the bigger workflow differences would be added GPU programing steps in the pipeline via the new tessellation shaders. Another would be multiple viewports to render to. I believe the new level of detail feature would change the workflow I'm using and perhaps other quite a bit, though I have not looked into this feature in depth.
I am still fairly novice with OpenGL though not to general graphical programming. Please let me know if you see any misconceptions or areas to improve.