bindVertexArray method

void bindVertexArray(
  1. VertexArrayObject array
)

Implementation

void bindVertexArray(VertexArrayObject array){
  startCheck('bindVertexArray');
  gl.glBindVertexArray(array.id);
  checkError('bindVertexArray');
}