rlDrawVertexArrayElementsInstanced method
void
rlDrawVertexArrayElementsInstanced(
- num offset,
- num count,
- Uint16List buffer,
- num instances,
override
Implementation
@override
void rlDrawVertexArrayElementsInstanced(
num offset,
num count,
Uint16List buffer,
num instances,
) => run(
() => RaylibDebugLabels.rlDrawVertexArrayElementsInstanced(offset, count, buffer, instances),
() => rl.Rlgl.rlDrawVertexArrayElementsInstanced(
offset.toInt(),
count.toInt(),
rl.Temp.Uint16$.FromTypedList(buffer).cast(),
instances.toInt(),
),
);