diff options
author | Marek Olšák <[email protected]> | 2018-08-22 17:28:26 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-08-23 16:54:30 -0400 |
commit | 37eee90df730ac6ba371b2ba8e61a1db9e55d7df (patch) | |
tree | ba4b5f1abbb87a79f8e5abbe68ef6554c0182f5a /src/mapi | |
parent | 578e45ab7bc58e153c4e7e1e2a024e7dfd7159f2 (diff) |
glapi: actually implement GL_EXT_robustness for GLES
The extension was exposed but not the functions.
This fixes:
dEQP-GLES31.functional.debug.negative_coverage.get_error.buffer.readn_pixels
dEQP-GLES31.functional.debug.negative_coverage.get_error.state.get_nuniformfv
dEQP-GLES31.functional.debug.negative_coverage.get_error.state.get_nuniformiv
Cc: 18.1 18.2 <[email protected]>
Reviewed-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/KHR_robustness_es.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/mapi/glapi/gen/KHR_robustness_es.xml b/src/mapi/glapi/gen/KHR_robustness_es.xml index 84f6fd2cdb9..82b7edf31a7 100644 --- a/src/mapi/glapi/gen/KHR_robustness_es.xml +++ b/src/mapi/glapi/gen/KHR_robustness_es.xml @@ -60,4 +60,36 @@ </category> +<category name="GL_EXT_robustness" number="107"> + <function name="GetGraphicsResetStatusEXT" + alias="GetGraphicsResetStatusARB" es2="2.0"> + <return type="GLenum"/> + </function> + + <function name="ReadnPixelsEXT" alias="ReadnPixelsARB" es2="2.0"> + <param name="x" type="GLint"/> + <param name="y" type="GLint"/> + <param name="width" type="GLsizei"/> + <param name="height" type="GLsizei"/> + <param name="format" type="GLenum"/> + <param name="type" type="GLenum"/> + <param name="bufSize" type="GLsizei"/> + <param name="data" type="GLvoid *" output="true"/> + </function> + + <function name="GetnUniformfvEXT" alias="GetnUniformfvARB" es2="2.0"> + <param name="program" type="GLuint"/> + <param name="location" type="GLint"/> + <param name="bufSize" type="GLsizei"/> + <param name="params" type="GLfloat *" output="true"/> + </function> + + <function name="GetnUniformivEXT" alias="GetnUniformivARB" es2="2.0"> + <param name="program" type="GLuint"/> + <param name="location" type="GLint"/> + <param name="bufSize" type="GLsizei"/> + <param name="params" type="GLint *" output="true"/> + </function> +</category> + </OpenGLAPI> |