rlDrawVertexArrayElements method
Implementation
void rlDrawVertexArrayElements(
num offset,
num count,
Uint16List buffer,
) => run(
() => 'rlDrawVertexArrayElements($offset, ${buffer.length})',
() => rl.Rlgl.rlDrawVertexArrayElements(
offset.toInt(),
count.toInt(),
rl.Temp.Uint16$.FromTypedList(buffer).cast(),
),
);