bindVertexArrayObject method
void
bindVertexArrayObject(
- WxGlVertexArrayObject? vao
Implementation
void bindVertexArrayObject(WxGlVertexArrayObject? vao) {
if (vao != null) {
return gl.bindVertexArray(vao);
}
else {
console.warning(" WebGLBindingStates.dart bindVertexArrayObject VAO is null");
return;
}
}