rlDrawVertexArrayInstanced method

  1. @override
void rlDrawVertexArrayInstanced(
  1. num offset,
  2. num count,
  3. num instances
)
override

Implementation

@override
void rlDrawVertexArrayInstanced(
  num offset,
  num count,
  num instances,
) => run(
  () => RaylibDebugLabels.rlDrawVertexArrayInstanced(offset, count, instances),
  () => rl.Rlgl.rlDrawVertexArrayInstanced(
    offset.toInt(),
    count.toInt(),
    instances.toInt(),
  ),
);