glDrawElementsIndirect function opengl_glext
GLAPI void APIENTRY glDrawElementsIndirect (GLenum mode, GLenum type, const void *indirect)
Implementation
void glDrawElementsIndirect(int mode, int type, Pointer<Void> indirect) {
final glDrawElementsIndirectAsFunction = _glDrawElementsIndirect
.cast<
NativeFunction<
Void Function(Uint32 mode, Uint32 type, Pointer<Void> indirect)
>
>()
.asFunction<void Function(int mode, int type, Pointer<Void> indirect)>();
return glDrawElementsIndirectAsFunction(mode, type, indirect);
}