scissor method

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

Implementation

void scissor(int x, int y, int width, int height){
  startCheck('scissor');
  gl.glScissor(x, y, width, height);
  checkError('scissor');
}