mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
mesa: expose AMD_multi_draw_indirect
because the closed driver exposes it. This is equivalent to the ARB extension. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
b3c17330e6
commit
056b9a5a36
3 changed files with 22 additions and 0 deletions
|
|
@ -53,6 +53,7 @@ Note: some of the new features are only available with certain drivers.
|
|||
<ul>
|
||||
<li>GL_AMD_framebuffer_multisample_advanced on radeonsi.</li>
|
||||
<li>GL_AMD_gpu_shader_int64 on i965, nvc0, radeonsi.</li>
|
||||
<li>GL_AMD_multi_draw_indirect on all GL 4.x drivers.</li>
|
||||
<li>GL_EXT_window_rectangles on radeonsi.</li>
|
||||
</ul>
|
||||
|
||||
|
|
|
|||
|
|
@ -42,4 +42,24 @@
|
|||
</category>
|
||||
|
||||
|
||||
<category name="GL_AMD_multi_draw_indirect" number="408">
|
||||
|
||||
<function name="MultiDrawArraysIndirectAMD" exec="dynamic" alias="MultiDrawArraysIndirect">
|
||||
<param name="mode" type="GLenum"/>
|
||||
<param name="indirect" type="const GLvoid *"/>
|
||||
<param name="primcount" type="GLsizei"/>
|
||||
<param name="stride" type="GLsizei"/>
|
||||
</function>
|
||||
|
||||
<function name="MultiDrawElementsIndirectAMD" exec="dynamic" alias="MultiDrawElementsIndirect">
|
||||
<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>
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ EXT(AMD_conservative_depth , ARB_conservative_depth
|
|||
EXT(AMD_draw_buffers_blend , ARB_draw_buffers_blend , GLL, GLC, x , x , 2009)
|
||||
EXT(AMD_framebuffer_multisample_advanced , AMD_framebuffer_multisample_advanced , GLL, GLC, x , ES2, 2018)
|
||||
EXT(AMD_gpu_shader_int64 , ARB_gpu_shader_int64 , x , GLC, x , x , 2015)
|
||||
EXT(AMD_multi_draw_indirect , ARB_draw_indirect , GLL, GLC, x , x , 2011)
|
||||
EXT(AMD_performance_monitor , AMD_performance_monitor , GLL, GLC, x , ES2, 2007)
|
||||
EXT(AMD_pinned_memory , AMD_pinned_memory , GLL, GLC, x , x , 2013)
|
||||
EXT(AMD_seamless_cubemap_per_texture , AMD_seamless_cubemap_per_texture , GLL, GLC, x , x , 2009)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue