rlLoadVertexBufferElement function
Implementation
int rlLoadVertexBufferElement(Uint8List buffer, bool dynamic) =>
ffi.using((arena) {
final ptr = arena<Uint8>(buffer.length);
ptr.asTypedList(buffer.length).setAll(0, buffer);
return raylib.rlLoadVertexBufferElement(ptr.cast(), buffer.length, dynamic);
});