rlDrawVertexArrayElementsInstanced method

  1. @override
void rlDrawVertexArrayElementsInstanced(
  1. num offset,
  2. num count,
  3. Uint16List buffer,
  4. 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.run4(
    offset.toJS,
    count.toJS,
    rl.Temp.Uint16$.FromTypedList(buffer).toJS,
    instances.toJS,
  ),
);