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