setScissorTest method

dynamic setScissorTest(
  1. bool scissorTest
)

Implementation

setScissorTest(bool scissorTest) {
  if (scissorTest) {
    enable(gl.SCISSOR_TEST);
  } else {
    disable(gl.SCISSOR_TEST);
  }
}