mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-04 21:30:26 +01:00
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
35 lines
961 B
XML
35 lines
961 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
|
|
|
|
<!-- Note: no GLX protocol info yet. -->
|
|
|
|
|
|
<OpenGLAPI>
|
|
|
|
<category name="GL_ARB_vertex_array_object" number="54">
|
|
|
|
<enum name="VERTEX_ARRAY_BINDING" value="0x85B5"/>
|
|
|
|
<function name="BindVertexArray" es2="3.0" no_error="true"
|
|
marshal_fail="_mesa_glthread_is_compat_bind_vertex_array(ctx)">
|
|
<param name="array" type="GLuint"/>
|
|
</function>
|
|
|
|
<function name="DeleteVertexArrays" es2="3.0" no_error="true">
|
|
<param name="n" type="GLsizei"/>
|
|
<param name="arrays" type="const GLuint *" count="n"/>
|
|
</function>
|
|
|
|
<function name="GenVertexArrays" es2="3.0" no_error="true">
|
|
<param name="n" type="GLsizei"/>
|
|
<param name="arrays" type="GLuint *"/>
|
|
</function>
|
|
|
|
<function name="IsVertexArray" es2="3.0">
|
|
<param name="array" type="GLuint"/>
|
|
<return type="GLboolean"/>
|
|
</function>
|
|
|
|
</category>
|
|
|
|
</OpenGLAPI>
|