glViewport method

void glViewport(
  1. int x,
  2. int y,
  3. int width,
  4. int height,
)

Implementation

void glViewport(int x, int y, int width, int height){
  gl.viewport(x, y, width, height);
}