glBindBuffer method

void glBindBuffer(
  1. int target,
  2. int buffer
)

Implementation

void glBindBuffer(int target, int buffer) {
  gl.bindBuffer(target, buffer);
}