createVertexArrays method
dynamic
createVertexArrays()
Implementation
createVertexArrays() {
Pointer<Uint32> vao = calloc<Uint32>();
glGenVertexArrays(1, vao);
int _v = vao.value;
calloc.free(vao);
return _v;
}