mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 08:48:07 +02:00
A couple functions are missing because there are no implementations of
them yet. These are:
glFramebufferParameteri (from GL_ARB_framebuffer_no_attachments)
glGetFramebufferParameteriv (from GL_ARB_framebuffer_no_attachments)
glMemoryBarrierByRegion
v2: Rebase on updated dispatch_sanity.cpp test.
v3: Add support for glDraw{Arrays,Elements}Indirect in vbo_exec_array.c.
The updated dispatch_sanity.cpp test discovered this omission.
v4: Rebase on glapi changes.
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
45 lines
1.3 KiB
XML
45 lines
1.3 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
|
|
|
|
<OpenGLAPI>
|
|
|
|
<category name="GL_ARB_draw_indirect" number="87">
|
|
|
|
<enum name="DRAW_INDIRECT_BUFFER" value="0x8F3F"/>
|
|
<enum name="DRAW_INDIRECT_BUFFER_BINDING" value="0x8F43"/>
|
|
|
|
<function name="DrawArraysIndirect" exec="dynamic" es2="3.1">
|
|
<param name="mode" type="GLenum"/>
|
|
<param name="indirect" type="const GLvoid *"/>
|
|
</function>
|
|
|
|
<function name="DrawElementsIndirect" exec="dynamic" es2="3.1">
|
|
<param name="mode" type="GLenum"/>
|
|
<param name="type" type="GLenum"/>
|
|
<param name="indirect" type="const GLvoid *"/>
|
|
</function>
|
|
|
|
</category>
|
|
|
|
|
|
<category name="GL_ARB_multi_draw_indirect" number="133">
|
|
|
|
<function name="MultiDrawArraysIndirect" exec="dynamic">
|
|
<param name="mode" type="GLenum"/>
|
|
<param name="indirect" type="const GLvoid *"/>
|
|
<param name="primcount" type="GLsizei"/>
|
|
<param name="stride" type="GLsizei"/>
|
|
</function>
|
|
|
|
<function name="MultiDrawElementsIndirect" exec="dynamic">
|
|
<param name="mode" type="GLenum"/>
|
|
<param name="type" type="GLenum"/>
|
|
<param name="indirect" type="const GLvoid *"/>
|
|
<param name="primcount" type="GLsizei"/>
|
|
<param name="stride" type="GLsizei"/>
|
|
</function>
|
|
|
|
</category>
|
|
|
|
|
|
</OpenGLAPI>
|