OpenGL 4.5 Specifications


OpenGL 4.5 Specifications

I thought that OpenGL 5.0 will be unveiled during SIGGRAPH 2014 but it seems the major version of OpenGL is still 4.

According to the OpenGL 4.5 specifications, here are the new extensions that any OpenGL 4.5 driver should expose (for capable hardware) in the next days/weeks/months:

GL_ARB_direct_state_access is interesting because it allows to bypass the regular bind-to-edit OpenGL principle and makes it possible to directly update an object without binding it before. The following line updates a VBO without calling glBindBuffer:

glNamedBufferData(vbo, size, vertices, usage);

GL_ARB_direct_state_access introduces a ton of new functions!

Arstechnica has a detailed article about DSA (Direct State Access): OpenGL 4.5 released—with one of Direct3D’s best features

The official press release about OpenGL 4.5 is available here: (PR) Khronos Group Announces Key Advances in OpenGL Ecosystem.

OpenGL 4.5 API reference card is available HERE.




4 thoughts on “OpenGL 4.5 Specifications”

  1. Alex

    Ok…a lot of new features, but who will use these features and for what? I would like to know what is the vision of OpenGL from the kronos group.

  2. DrBalthar

    OpenGL NG that is the vision a clean start finally get rid of all that legacy rubbish.

  3. Alex

    @DrBalthar I agree. Hope a total new graphic library with no past strings attached.

Comments are closed.