rlDrawVertexArrayElementsInstanced method
void
rlDrawVertexArrayElementsInstanced(
- num offset,
- num count,
- Uint16List buffer,
- num instances,
)
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(),
rl.Temp.Uint16$.FromTypedList(buffer).cast(),
instances.toInt(),
),
);