rlDrawVertexArrayInstanced method

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

Implementation

void rlDrawVertexArrayInstanced(
  num offset,
  num count,
  num instances,
) => run(
  () => 'rlDrawVertexArrayInstanced($offset, $count, $instances)',
  () => rl.Rlgl.rlDrawVertexArrayInstanced(
    offset.toInt(),
    count.toInt(),
    instances.toInt(),
  ),
);