setScissorTest method
Implementation
void setScissorTest(bool scissorTest) {
if (scissorTest) {
enable(WebGL.SCISSOR_TEST);
} else {
disable(WebGL.SCISSOR_TEST);
}
}
void setScissorTest(bool scissorTest) {
if (scissorTest) {
enable(WebGL.SCISSOR_TEST);
} else {
disable(WebGL.SCISSOR_TEST);
}
}