rlDrawVertexArrayElementsInstanced function
Implementation
void rlDrawVertexArrayElementsInstanced(
int offset, int count, Uint8List buffer, int instances,
) => ffi.using((arena) {
final ptr = arena<Uint8>(buffer.length);
ptr.asTypedList(buffer.length).setAll(0, buffer);
raylib.rlDrawVertexArrayElementsInstanced(
offset, count, ptr.cast(), instances,
);
});