glDrawElementsInstanced method
void
glDrawElementsInstanced()
Implementation
void glDrawElementsInstanced(
int mode,
int count,
int type,
ffi.Pointer<ffi.Void> indices,
int instancecount,
) {
return (_glDrawElementsInstanced ??= _dylib.lookupFunction<
_c_glDrawElementsInstanced,
_dart_glDrawElementsInstanced>('glDrawElementsInstanced'))(
mode,
count,
type,
indices,
instancecount,
);
}