Login  Register

Re: glMultiDraw*Indirect

Posted by Sven Gothel on Aug 06, 2023; 7:50pm
URL: https://forum.jogamp.org/glMultiDraw-Indirect-tp4042510p4042815.html

Sven Gothel wrote
Correction:
- 'glMultiDrawElementsIndirect()'
  - should take a 'long' only for the indirect VBO bound buffer offset
  - Is GL4.3 but may exist in GL4.1 via ARB_multi_draw_indirect extension
    - TODO: Have it in GL4 with 'indirect' arg type as long only!
  - TODO: Needs 'indirect' arg type changed from NIO Buffer -> long for VBO offset only!
  https://www.khronos.org/opengl/wiki/GLAPI/glMultiDrawElementsIndirect

- 'glMultiDrawArraysIndirect'
  - should tale a NIO Buffer only for the indirect buffer address of values
  - Is GL4.3 but may exist in GL4.1 via ARB_multi_draw_indirect extension
    - TODO: Have it in GL4 with 'indirect' arg type as Buffer only!
    - TODO: Remove 'long' indirect variant
  https://www.khronos.org/opengl/wiki/GLAPI/glMultiDrawArraysIndirect

Edit: Both belonging to ARB_multi_draw_indirect extension,
which is written against OpenGL 4.1. Hence should only be in GL4 (IMHO).
- https://registry.khronos.org/OpenGL/extensions/ARB/ARB_multi_draw_indirect.txt

...
Resolved, see https://jogamp.org/bugzilla/show_bug.cgi?id=1441
also see discussion in https://jogamp.org/bugzilla/show_bug.cgi?id=852

(Memories ..  I triaged w/ git blame, then checked our bugzilla crossref
to ensure I didn't miss anything .. and voila .. )

Notable, `glMultiDrawArraysIndirect` is dual sourced (cpu + gpu) per GL4 spec.
Also related, ARB_draw_indirect allows to be cpu sourced as well in ES 3.1.