glBindBuffer method

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

Implementation

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