rlDrawVertexArrayInstanced method
Draw vertex array (currently active vao) with instancing
Implementation
void rlDrawVertexArrayInstanced(
num offset,
num count,
num instances,
) => run(
() => _debugLabels.rlDrawVertexArrayInstanced(offset, count, instances),
() => _flat.rlDrawVertexArrayInstanced(
offset.toInt(),
count.toInt(),
instances.toInt(),
),
);