mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
mesa/main: wire up glapi bits for EXT_multi_draw_indirect
Turns out we were missing the glapi bits, making it impossible to use get
the function pointers for this extension. Whoops?!
[daniels: Squashed in a618 SkQP fails, presumably caused by these not
being skipped anymore.]
Fixes: 9f5af68995 ("mesa/main: expose `EXT_multi_draw_indirect`")
Reviewed-by: Antonino Maniscalco <antomani103@gmail.com>
Tested-by: Chris Healy <healych@amazon.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33546>
This commit is contained in:
parent
2f57cf0323
commit
fde6aeb886
2 changed files with 62 additions and 0 deletions
|
|
@ -356,6 +356,50 @@ gl_wacky_yuv_formats,Fail
|
|||
gl_wacky_yuv_formats_cs,Fail
|
||||
gl_xfermodes2,Fail
|
||||
gl_xfermodes3,Fail
|
||||
# GLES failures started when EXT_mdi was properly exposed
|
||||
gles_all_bitmap_configs,Fail
|
||||
gles_androidblendmodes,Fail
|
||||
gles_annotated_text,Fail
|
||||
gles_arithmode,Fail
|
||||
gles_bitmapcopy,Fail
|
||||
gles_blob_rsxform,Fail
|
||||
gles_blurSmallRadii,Fail
|
||||
gles_coloremoji_blendmodes,Fail
|
||||
gles_colorwheelnative,Fail
|
||||
gles_combinemaskfilter,Fail
|
||||
gles_dashtextcaps,Fail
|
||||
gles_degenerate_gradients,Fail
|
||||
gles_draw-atlas-colors,Fail
|
||||
gles_encode,Fail
|
||||
gles_gammagradienttext,Fail
|
||||
gles_gammatext,Fail
|
||||
gles_gpusamplerstress,Fail
|
||||
gles_gradtext,Fail
|
||||
gles_highcontrastfilter,Fail
|
||||
gles_image-surface,Fail
|
||||
gles_imageblur2,Fail
|
||||
gles_imageblur_large,Fail
|
||||
gles_imageblurtiled,Fail
|
||||
gles_lcdblendmodes,Fail
|
||||
gles_lcdtextsize,Fail
|
||||
gles_scaled_tilemode_bitmap,Fail
|
||||
gles_scaled_tilemode_gradient,Fail
|
||||
gles_scaled_tilemodes,Fail
|
||||
gles_simpleaaclip_aaclip,Fail
|
||||
gles_skbug_5321,Fail
|
||||
gles_srcmode,Fail
|
||||
gles_surfaceprops,Fail
|
||||
gles_textblob_intercepts,Fail
|
||||
gles_textblobblockreordering,Fail
|
||||
gles_textblobcolortrans,Fail
|
||||
gles_textfilter_color,Fail
|
||||
gles_textfilter_image,Fail
|
||||
gles_tilemode_bitmap,Fail
|
||||
gles_typefacestyles,Fail
|
||||
gles_wacky_yuv_formats,Fail
|
||||
gles_wacky_yuv_formats_cs,Fail
|
||||
gles_xfermodes2,Fail
|
||||
gles_xfermodes3,Fail
|
||||
vk_all_bitmap_configs,Fail
|
||||
vk_androidblendmodes,Fail
|
||||
vk_annotated_text,Fail
|
||||
|
|
|
|||
|
|
@ -45,6 +45,24 @@
|
|||
|
||||
</category>
|
||||
|
||||
<category name="GL_EXT_multi_draw_indirect" number="205">
|
||||
|
||||
<function name="MultiDrawArraysIndirectEXT" alias="MultiDrawArraysIndirect" es2="3.1">
|
||||
<param name="mode" type="GLenum"/>
|
||||
<param name="indirect" type="const GLvoid *"/>
|
||||
<param name="primcount" type="GLsizei"/>
|
||||
<param name="stride" type="GLsizei"/>
|
||||
</function>
|
||||
|
||||
<function name="MultiDrawElementsIndirectEXT" alias="MultiDrawElementsIndirect" es2="3.1">
|
||||
<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>
|
||||
|
||||
<category name="GL_AMD_multi_draw_indirect" number="408">
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue