setFunc method
Implementation
setFunc(int stencilFunc, int stencilRef, int stencilMask) {
if (currentStencilFunc != stencilFunc ||
currentStencilRef != stencilRef ||
currentStencilFuncMask != stencilMask) {
gl.stencilFunc(stencilFunc, stencilRef, stencilMask);
currentStencilFunc = stencilFunc;
currentStencilRef = stencilRef;
currentStencilFuncMask = stencilMask;
}
}