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