diff options
author | Samuel Pitoiset <[email protected]> | 2017-07-18 15:21:22 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-07-31 13:53:39 +0200 |
commit | 6f4741e32ed66a2f0df4a03e9a874f08ab666412 (patch) | |
tree | 445c5f9fc7e25749b0578a9db8db0cc9d6d1f11b /src/mapi/glapi | |
parent | ab0f246672edfb5d41203abf7be9a01c9f16b4b4 (diff) |
mesa: add KHR_no_error support to gl{Create,Gen}VertexArrays()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mapi/glapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_direct_state_access.xml | 2 | ||||
-rw-r--r-- | src/mapi/glapi/gen/ARB_vertex_array_object.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mapi/glapi/gen/ARB_direct_state_access.xml b/src/mapi/glapi/gen/ARB_direct_state_access.xml index f1ae6e97902..8e91d801410 100644 --- a/src/mapi/glapi/gen/ARB_direct_state_access.xml +++ b/src/mapi/glapi/gen/ARB_direct_state_access.xml @@ -579,7 +579,7 @@ <!-- Vertex Array object functions --> - <function name="CreateVertexArrays"> + <function name="CreateVertexArrays" no_error="true"> <param name="n" type="GLsizei" /> <param name="arrays" type="GLuint *" /> </function> diff --git a/src/mapi/glapi/gen/ARB_vertex_array_object.xml b/src/mapi/glapi/gen/ARB_vertex_array_object.xml index 4f21137ab03..57eaa1d3ffb 100644 --- a/src/mapi/glapi/gen/ARB_vertex_array_object.xml +++ b/src/mapi/glapi/gen/ARB_vertex_array_object.xml @@ -20,7 +20,7 @@ <param name="arrays" type="const GLuint *" count="n"/> </function> - <function name="GenVertexArrays" es2="3.0"> + <function name="GenVertexArrays" es2="3.0" no_error="true"> <param name="n" type="GLsizei"/> <param name="arrays" type="GLuint *"/> </function> |