mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 20:18:12 +02:00
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 <mesa-stable@lists.freedesktop.org>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
(cherry picked from commit 37eee90df7)
This commit is contained in:
parent
280be5067d
commit
9517387144
1 changed files with 32 additions and 0 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue