bindVertexArrayObject method

void bindVertexArrayObject(
  1. VertexArrayObject? vao
)

Implementation

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