bindVertexArray method

void bindVertexArray(
  1. VertexArrayObject array
)

Implementation

void bindVertexArray(VertexArrayObject array) {
  startCheck("bindVertexArray");
  glBindVertexArray(_gl, array.id);
  checkError('bindVertexArray');
}