mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-17 07:00:20 +01:00
APPLE_vertex_array_object support was removed in7927d0378f. However it turns out we can't remove the functions because this can cause issues when libglapi is used together with DRI drivers built prior to said commit Fixes:7927d0378f("mesa: drop APPLE_vertex_array_object support") Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
27 lines
868 B
XML
27 lines
868 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
|
|
|
|
<OpenGLAPI>
|
|
<category name="GL_APPLE_vertex_array_object" number="273">
|
|
<enum name="VERTEX_ARRAY_BINDING_APPLE" value="0x85B5"/>
|
|
|
|
<function name="BindVertexArrayAPPLE" deprecated="3.1">
|
|
<param name="array" type="GLuint"/>
|
|
</function>
|
|
|
|
<function name="DeleteVertexArraysAPPLE" alias="DeleteVertexArrays">
|
|
<param name="n" type="GLsizei"/>
|
|
<param name="arrays" type="const GLuint *"/>
|
|
</function>
|
|
|
|
<function name="GenVertexArraysAPPLE" deprecated="3.1">
|
|
<param name="n" type="GLsizei"/>
|
|
<param name="arrays" type="GLuint *" count="n" output="true"/>
|
|
</function>
|
|
|
|
<function name="IsVertexArrayAPPLE" alias="IsVertexArray">
|
|
<param name="array" type="GLuint"/>
|
|
<return type="GLboolean"/>
|
|
</function>
|
|
</category>
|
|
</OpenGLAPI>
|