diff options
author | Markus Wick <markus@selfnet.de> | 2019-11-03 09:49:59 +0100 |
---|---|---|
committer | Marek Olšák <marek.olsak@amd.com> | 2019-11-22 15:29:07 -0500 |
commit | f4c61d422d5134bbcb0611692eb15bbe311916d2 (patch) | |
tree | bd6bb691855b56c74aea7ccdd669931099c6db1e /src/mapi | |
parent | 517728477cd5b682ea4c2474e73fdb71b449e6f5 (diff) | |
download | mesa-f4c61d422d5134bbcb0611692eb15bbe311916d2.tar.gz |
mesa/glthread: Implement ARB_multi_bind.
Signed-off-by: Markus Wick <markus@selfnet.de>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_multi_bind.xml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mapi/glapi/gen/ARB_multi_bind.xml b/src/mapi/glapi/gen/ARB_multi_bind.xml index 75266ec6150..18f54504434 100644 --- a/src/mapi/glapi/gen/ARB_multi_bind.xml +++ b/src/mapi/glapi/gen/ARB_multi_bind.xml @@ -11,42 +11,42 @@ <param name="target" type="GLenum"/> <param name="first" type="GLuint"/> <param name="count" type="GLsizei"/> - <param name="buffers" type="const GLuint *"/> + <param name="buffers" type="const GLuint *" count="count"/> </function> <function name="BindBuffersRange"> <param name="target" type="GLenum"/> <param name="first" type="GLuint"/> <param name="count" type="GLsizei"/> - <param name="buffers" type="const GLuint *"/> - <param name="offsets" type="const GLintptr *"/> - <param name="sizes" type="const GLsizeiptr *"/> + <param name="buffers" type="const GLuint *" count="count"/> + <param name="offsets" type="const GLintptr *" count="count"/> + <param name="sizes" type="const GLsizeiptr *" count="count"/> </function> <function name="BindTextures" no_error="true"> <param name="first" type="GLuint"/> <param name="count" type="GLsizei"/> - <param name="textures" type="const GLuint *"/> + <param name="textures" type="const GLuint *" count="count"/> </function> <function name="BindSamplers" no_error="true"> <param name="first" type="GLuint"/> <param name="count" type="GLsizei"/> - <param name="samplers" type="const GLuint *"/> + <param name="samplers" type="const GLuint *" count="count"/> </function> <function name="BindImageTextures" no_error="true"> <param name="first" type="GLuint"/> <param name="count" type="GLsizei"/> - <param name="textures" type="const GLuint *"/> + <param name="textures" type="const GLuint *" count="count"/> </function> <function name="BindVertexBuffers" no_error="true"> <param name="first" type="GLuint"/> <param name="count" type="GLsizei"/> - <param name="buffers" type="const GLuint *"/> - <param name="offsets" type="const GLintptr *"/> - <param name="strides" type="const GLsizei *"/> + <param name="buffers" type="const GLuint *" count="count"/> + <param name="offsets" type="const GLintptr *" count="count"/> + <param name="strides" type="const GLsizei *" count="count"/> </function> </category> |