OpenGL-ES 3.1 specification released

Monkey Archive Forums/Digital Discussion/OpenGL-ES 3.1 specification released

ordigdug(Posted 2014) [#1]
https://www.khronos.org/news/press/khronos-releases-opengl-es-3.1-specification

“OpenGL ES 3.1 provides the most desired features of desktop OpenGL 4.4 in a form suitable for mobile devices,”

Key features of the OpenGL ES 3.1 specification include:
• Compute shaders – applications can use the GPU to perform general computing tasks, tightly coupled with graphics rendering. Compute shaders are written in the GLSL ES shading language, and can share data with the graphics pipeline;
• Separate shader objects – applications can program the vertex and fragment shader stages of the GPU independently, and can mix and match vertex and fragment programs without an explicit linking step;
• Indirect draw commands – the GPU can be instructed to take draw commands from its memory rather than waiting for commands from the CPU. For example, this allows a compute shader running on the GPU to perform a physics simulation and then generate the draw commands needed to display the results, without CPU intervention;
• Enhanced texturing functionality – including multisample textures, stencil textures, and texture gather;
• Shading language improvements – new arithmetic and bitfield operations, and features to enable modern styles of shader programming;
• Optional extensions – per-sample shading, advanced blending modes, and more;
• Backward compatibility with OpenGL ES 2.0 and 3.0 – programmers can add ES 3.1 functionality incrementally to working ES 2.0 and 3.0 applications.