bindVertexArray method

void bindVertexArray(
  1. VertexArrayObject array
)

Implementation

void bindVertexArray(VertexArrayObject array) {
  _gl.bindVertexArray(array.id);
  checkError('bindVertexArray');
}