OpenGL.GL.ARB.uniform_buffer_object

OpenGL extension ARB.uniform_buffer_object
This module customises the behaviour of the OpenGL.raw.GL.ARB.uniform_buffer_object to provide a more Python-friendly API
Overview (from the spec)
This extension introduces the concept of a group of GLSL uniforms known as a "uniform block", and the API mechanisms to store "uniform blocks" in GL buffer objects.
The extension also defines both a standard cross-platform layout in memory for uniform block data, as well as mechanisms to allow the GL to optimize the data layout in an implementation-defined manner.
Prior to this extension, the existing interface for modification of uniform values allowed modification of large numbers of values using glUniform* calls, but only for a single uniform name (or a uniform array) at a time. However, updating uniforms in this manner may not map well to heterogenous uniform data structures defined for a GL application and in these cases, the application is forced to either:
A) restructure their uniform data definitions into arrays or B) make an excessive number of calls through the GL interface to one of the Uniform* variants.
These solutions have their disadvantages. Solution A imposes considerable development overhead on the application developer. Solution B may impose considerable run-time overhead on the application if the number of uniforms modified in a given frame of rendering is sufficiently large.
This extension provides a better alternative to either (A) or (B) by allowing buffer object backing for the storage associated with all uniforms of a given GLSL program.
Storing uniform blocks in buffer objects enables several key use cases:
  • sharing of uniform data storage between program objects and between program stages
  • rapid swapping of sets of previously defined uniforms by storing sets of uniform data on the GL server
  • rapid updates of uniform data from both the client and the server
The data storage for a uniform block can be declared to use one of three layouts in memory: packed, shared, or std140.
  • "packed" uniform blocks have an implementation-dependent data layout for efficiency, and unused uniforms may be eliminated by the compiler to save space.
  • "shared" uniform blocks, the default layout, have an implementation- dependent data layout for efficiency, but the layout will be uniquely determined by the structure of the block, allowing data storage to be shared across programs.
  • "std140" uniform blocks have a standard cross-platform cross-vendor layout (see below). Unused uniforms will not be eliminated.
Any uniforms not declared in a named uniform block are said to be part of the "default uniform block".
While uniforms in the default uniform block are updated with glUniform* entry points and can have static initializers, uniforms in named uniform blocks are not. Instead, uniform block data is updated using the routines that update buffer objects and can not use static initializers.
Rules and Concepts Guiding this Specification:
For reference, a uniform has a "uniform index" (subsequently referred to as "u_index) and also a "uniform location" to efficiently identify it in the uniform data store of the implementation. We subsequently refer to this uniform data store of the implementation as the "uniform database".
A "uniform block" only has a "uniform block index" used for queries and connecting the "uniform block" to a buffer object. A "uniform block" has no "location" because "uniform blocks" are not updated directly. The buffer object APIs are used instead.
Properties of Uniforms and uniform blocks:
a) A uniform is "active" if it exists in the database and has a valid u_index. b) A "uniform block" is "active" if it exists in the database and has a valid ub_index. c) Uniforms and "uniform blocks" can be inactive because they don't exist in the source, or because they have been removed by dead code elimination. d) An inactive uniform has u_index == INVALID_INDEX. e) An inactive uniform block has ub_index == INVALID_INDEX. f) A u_index or ub_index of INVALID_INDEX generates the INVALID_VALUE error if given as a function argument. g) The default uniform block, which is not assigned any ub_index, uses a private, internal data storage, and does not have any buffer object associated with it. h) An active uniform that is a member of the default uniform block has location >= 0 and it has offset == stride == -1. i) An active uniform that is a member of a named uniform block has location == -1. j) A uniform location of -1 is silently ignored if given as a function argument. k) Uniform block declarations may not be nested
The official definition of this extension is available here: http://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt

Functions

glGetActiveUniformBlockiv( program , uniformBlockIndex , pname , params )
glGetActiveUniformBlockName( program , uniformBlockIndex , bufSize , length , uniformBlockName )
glGetActiveUniformName( program , uniformIndex , bufSize , length , uniformName )
glGetActiveUniformsiv( program , uniformCount , uniformIndices , pname , params )
glGetUniformBlockIndex( program , uniformBlockName ) -> <class 'ctypes.c_uint'>
glGetUniformIndices( program , uniformCount , uniformNames , uniformIndices )
glUniformBlockBinding( program , uniformBlockIndex , uniformBlockBinding )

Constants

GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH (35381)
GL_ACTIVE_UNIFORM_BLOCKS (35382)
GL_INVALID_INDEX (4294967295)
GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS (35379)
GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS (35378)
GL_MAX_COMBINED_UNIFORM_BLOCKS (35374)
GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS (35377)
GL_MAX_FRAGMENT_UNIFORM_BLOCKS (35373)
GL_MAX_GEOMETRY_UNIFORM_BLOCKS (35372)
GL_MAX_UNIFORM_BLOCK_SIZE (35376)
GL_MAX_UNIFORM_BUFFER_BINDINGS (35375)
GL_MAX_VERTEX_UNIFORM_BLOCKS (35371)
GL_UNIFORM_ARRAY_STRIDE (35388)
GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES (35395)
GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS (35394)
GL_UNIFORM_BLOCK_BINDING (35391)
GL_UNIFORM_BLOCK_DATA_SIZE (35392)
GL_UNIFORM_BLOCK_INDEX (35386)
GL_UNIFORM_BLOCK_NAME_LENGTH (35393)
GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER (35398)
GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER (35397)
GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER (35396)
GL_UNIFORM_BUFFER (35345)
GL_UNIFORM_BUFFER_BINDING (35368)
GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT (35380)
GL_UNIFORM_BUFFER_SIZE (35370)
GL_UNIFORM_BUFFER_START (35369)
GL_UNIFORM_IS_ROW_MAJOR (35390)
GL_UNIFORM_MATRIX_STRIDE (35389)
GL_UNIFORM_NAME_LENGTH (35385)
GL_UNIFORM_OFFSET (35387)
GL_UNIFORM_SIZE (35384)
GL_UNIFORM_TYPE (35383)