OpenGL.GL.ARB.vertex_blend

OpenGL extension ARB.vertex_blend
This module customises the behaviour of the OpenGL.raw.GL.ARB.vertex_blend to provide a more Python-friendly API
Overview (from the spec)
This extension provides the ability to replace the single modelview transformation with a set of n vertex units. (Where n is constrained to an implementation defined maximum.) Each unit has its own modelview transform matrix. For each unit, there is a current weight associated with the vertex. When this extension is enabled the vertices are transformed by the modelview matrices of all of the enabled units. Afterward, these results are scaled by the weights for the respective units and then summed to create the eye-space vertex. A similar procedure is followed for the normals, except they are transformed by the inverse transpose of the modelview matrices.
This extension is an orthoganalized version of functionality already provided by other 3D graphics API's.
The official definition of this extension is available here: http://www.opengl.org/registry/specs/ARB/vertex_blend.txt

Functions

Constants

GL_ACTIVE_VERTEX_UNITS_ARB (34469)
GL_CURRENT_WEIGHT_ARB (34472)
GL_MAX_VERTEX_UNITS_ARB (34468)
GL_MODELVIEW0_ARB (5888)
GL_MODELVIEW10_ARB (34602)
GL_MODELVIEW11_ARB (34603)
GL_MODELVIEW12_ARB (34604)
GL_MODELVIEW13_ARB (34605)
GL_MODELVIEW14_ARB (34606)
GL_MODELVIEW15_ARB (34607)
GL_MODELVIEW16_ARB (34608)
GL_MODELVIEW17_ARB (34609)
GL_MODELVIEW18_ARB (34610)
GL_MODELVIEW19_ARB (34611)
GL_MODELVIEW1_ARB (34058)
GL_MODELVIEW20_ARB (34612)
GL_MODELVIEW21_ARB (34613)
GL_MODELVIEW22_ARB (34614)
GL_MODELVIEW23_ARB (34615)
GL_MODELVIEW24_ARB (34616)
GL_MODELVIEW25_ARB (34617)
GL_MODELVIEW26_ARB (34618)
GL_MODELVIEW27_ARB (34619)
GL_MODELVIEW28_ARB (34620)
GL_MODELVIEW29_ARB (34621)
GL_MODELVIEW2_ARB (34594)
GL_MODELVIEW30_ARB (34622)
GL_MODELVIEW31_ARB (34623)
GL_MODELVIEW3_ARB (34595)
GL_MODELVIEW4_ARB (34596)
GL_MODELVIEW5_ARB (34597)
GL_MODELVIEW6_ARB (34598)
GL_MODELVIEW7_ARB (34599)
GL_MODELVIEW8_ARB (34600)
GL_MODELVIEW9_ARB (34601)
GL_VERTEX_BLEND_ARB (34471)
GL_WEIGHT_ARRAY_ARB (34477)
GL_WEIGHT_ARRAY_POINTER_ARB (34476)
GL_WEIGHT_ARRAY_SIZE_ARB (34475)
GL_WEIGHT_ARRAY_STRIDE_ARB (34474)
GL_WEIGHT_ARRAY_TYPE_ARB (34473)
GL_WEIGHT_SUM_UNITY_ARB (34470)