rlDrawVertexArrayElementsInstanced method
Implementation
void rlDrawVertexArrayElementsInstanced(
num offset,
num count,
Uint16List buffer,
num instances,
) => run(
() => 'rlDrawVertexArrayElementsInstanced($offset, $count, ${buffer.length}, $instances)',
() => rl.Rlgl.rlDrawVertexArrayElementsInstanced(
offset.toInt(),
count.toInt(),
refTypedListUInt16(buffer).cast(),
instances.toInt(),
),
);