rlDrawVertexArrayElementsInstanced method
void
rlDrawVertexArrayElementsInstanced(
- int offset,
- int count,
- MemoryPointer<
RVoid> buffer, - int instances,
override
Draw vertex array elements with instancing
Implementation
@override
void rlDrawVertexArrayElementsInstanced(
int offset,
int count,
MemoryPointer<RVoid> buffer,
int instances,
) => _wasm.rlDrawVertexArrayElementsInstanced(
offset.toJS,
count.toJS,
buffer.toJS,
instances.toJS,
);