createVertexArray method
Implementation
VertexArrayObject createVertexArray(){
startCheck('createVertexArray');
final v = calloc<Uint32>();
gl.glGenVertexArrays(1, v);
int _v = v.value;
calloc.free(v);
return VertexArrayObject(_v);
}
VertexArrayObject createVertexArray(){
startCheck('createVertexArray');
final v = calloc<Uint32>();
gl.glGenVertexArrays(1, v);
int _v = v.value;
calloc.free(v);
return VertexArrayObject(_v);
}