diff options
author | Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> | 2019-11-06 12:16:30 +0100 |
---|---|---|
committer | Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> | 2019-11-19 08:49:45 +0100 |
commit | b78e2a197a1dd866024b0dc97689a006c0e6798f (patch) | |
tree | 0d7ce500f1954e6a8bcaff2d5aab004b8d65eb26 /src/mapi | |
parent | a807b8c0a893a437534df5292fe70c54c8d8332b (diff) | |
download | mesa-b78e2a197a1dd866024b0dc97689a006c0e6798f.tar.gz |
mesa: add ARB_instanced_arrays EXT_dsa function
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_instanced_arrays.xml | 6 | ||||
-rw-r--r-- | src/mapi/glapi/gen/static_data.py | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/mapi/glapi/gen/ARB_instanced_arrays.xml b/src/mapi/glapi/gen/ARB_instanced_arrays.xml index 907a9d4b8f3..8ecf7951af8 100644 --- a/src/mapi/glapi/gen/ARB_instanced_arrays.xml +++ b/src/mapi/glapi/gen/ARB_instanced_arrays.xml @@ -15,6 +15,12 @@ <param name="divisor" type="GLuint"/> </function> + <function name="VertexArrayVertexAttribDivisorEXT"> + <param name="vaobj" type="GLuint"/> + <param name="index" type="GLuint"/> + <param name="divisor" type="GLuint"/> + </function> + </category> diff --git a/src/mapi/glapi/gen/static_data.py b/src/mapi/glapi/gen/static_data.py index c9d9b2cb2d6..3326ffdf378 100644 --- a/src/mapi/glapi/gen/static_data.py +++ b/src/mapi/glapi/gen/static_data.py @@ -1621,6 +1621,7 @@ offsets = { "NamedFramebufferParameteriEXT": 1585, "GetNamedFramebufferParameterivEXT": 1586, "VertexArrayVertexAttribLOffsetEXT": 1587, + "VertexArrayVertexAttribDivisorEXT": 1588, } functions = [ |