mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 17:48:10 +02:00
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:
parent
35fd98f2d9
commit
31841c6b11
1 changed files with 4 additions and 4 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue