gles1: fix GL_OES_vertex_array_object

Export functions for GL_OES_vertex_array_object through GetProcAddress
on gles1.

Signed-off-by: Zack Middleton <zack@cloemail.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29794>
This commit is contained in:
Zack Middleton 2024-05-27 18:13:36 -05:00 committed by Marge Bot
parent 35fd98f2d9
commit 31841c6b11

View file

@ -656,21 +656,21 @@
<!-- 71. GL_OES_vertex_array_object -->
<category name="GL_OES_vertex_array_object" number="71">
<function name="BindVertexArrayOES" alias="BindVertexArray" es2="2.0">
<function name="BindVertexArrayOES" alias="BindVertexArray" es1="1.0" es2="2.0">
<param name="array" type="GLuint"/>
</function>
<function name="DeleteVertexArraysOES" alias="DeleteVertexArrays" es2="2.0">
<function name="DeleteVertexArraysOES" alias="DeleteVertexArrays" es1="1.0" es2="2.0">
<param name="n" type="GLsizei"/>
<param name="arrays" type="const GLuint *" count="n"/>
</function>
<function name="GenVertexArraysOES" alias="GenVertexArrays" es2="2.0">
<function name="GenVertexArraysOES" alias="GenVertexArrays" es1="1.0" es2="2.0">
<param name="n" type="GLsizei"/>
<param name="arrays" type="GLuint *" output="true" count="n"/>
</function>
<function name="IsVertexArrayOES" alias="IsVertexArray" es2="2.0">
<function name="IsVertexArrayOES" alias="IsVertexArray" es1="1.0" es2="2.0">
<param name="array" type="GLuint"/>
<return type="GLboolean"/>
</function>