glBindVertexArray method

void glBindVertexArray(
  1. int array
)

Implementation

void glBindVertexArray(
  int array,
) {
  return (_glBindVertexArray ??=
      _dylib.lookupFunction<_c_glBindVertexArray, _dart_glBindVertexArray>(
          'glBindVertexArray'))(
    array,
  );
}