bindVertexArrayObject method
dynamic
bindVertexArrayObject(
- dynamic vao
Implementation
bindVertexArrayObject(vao) {
if (capabilities.isWebGL2) {
if (vao != null) {
return gl.bindVertexArray(vao);
} else {
print(" WebGLBindingStates.dart bindVertexArrayObject VAO is null");
return;
}
}
return extension.bindVertexArrayOES(vao);
}