diff options
author | Fredrik Höglund <[email protected]> | 2015-03-02 18:44:00 +0100 |
---|---|---|
committer | Fredrik Höglund <[email protected]> | 2015-05-08 15:31:03 +0200 |
commit | f0030b0f1fd6f8c7790e28e65ead3af6c3bab3eb (patch) | |
tree | 79d67748c61a4844f875390217869f1a564ba9e1 /src/mapi | |
parent | fa350eadfbe892c21be30d945fa6d61f09541cae (diff) |
mesa: Implement VertexArrayAttrib[I|L]Format
Reviewed-by: Laura Ekstrand <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_direct_state_access.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/mapi/glapi/gen/ARB_direct_state_access.xml b/src/mapi/glapi/gen/ARB_direct_state_access.xml index 645c9cc80d7..0268f5ff5b0 100644 --- a/src/mapi/glapi/gen/ARB_direct_state_access.xml +++ b/src/mapi/glapi/gen/ARB_direct_state_access.xml @@ -487,6 +487,31 @@ <param name="strides" type="const GLsizei *" /> </function> + <function name="VertexArrayAttribFormat" offset="assign"> + <param name="vaobj" type="GLuint" /> + <param name="attribindex" type="GLuint" /> + <param name="size" type="GLint" /> + <param name="type" type="GLenum" /> + <param name="normalized" type="GLboolean" /> + <param name="relativeoffset" type="GLuint" /> + </function> + + <function name="VertexArrayAttribIFormat" offset="assign"> + <param name="vaobj" type="GLuint" /> + <param name="attribindex" type="GLuint" /> + <param name="size" type="GLint" /> + <param name="type" type="GLenum" /> + <param name="relativeoffset" type="GLuint" /> + </function> + + <function name="VertexArrayAttribLFormat" offset="assign"> + <param name="vaobj" type="GLuint" /> + <param name="attribindex" type="GLuint" /> + <param name="size" type="GLint" /> + <param name="type" type="GLenum" /> + <param name="relativeoffset" type="GLuint" /> + </function> + <!-- Sampler object functions --> <function name="CreateSamplers" offset="assign"> |