mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-01 11:10:27 +01:00
Changes generated by:
cd src/mapi/glapi/gen
for i in *.xml; do
cat $i |\
sed 's/[[:space:]]*offset="[^"]*">/>/' |\
sed 's/[[:space:]]*offset="[^"]*"[[:space:]]*$//' |\
sed 's/[[:space:]]*offset="[^"]*"[[:space:]]*/ /' > x
mv x $i
done
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
34 lines
836 B
XML
34 lines
836 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">
|
|
<param name="array" type="GLuint"/>
|
|
</function>
|
|
|
|
<function name="DeleteVertexArrays" es2="3.0">
|
|
<param name="n" type="GLsizei"/>
|
|
<param name="arrays" type="const GLuint *" count="n"/>
|
|
</function>
|
|
|
|
<function name="GenVertexArrays" es2="3.0">
|
|
<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>
|