if (func!==currentStencilFunc||ref!==currentStencilRef||mask!==currentStencilValueMask||func!==currentStencilBackFunc||ref!==currentStencilBackRef||mask!==currentStencilBackValueMask){
if (func!==currentStencilFunc||ref!==currentStencilRef||mask!==currentStencilValueMask){
gl.stencilFuncSeparate(face,func,ref,mask);
currentStencilFunc=func;
currentStencilRef=ref;
currentStencilValueMask=mask;
}
}elseif (face===gl.BACK){
if (func!==currentStencilBackFunc||ref!==currentStencilBackRef||mask!==currentStencilBackValueMask){
gl.stencilFuncSeparate(face,func,ref,mask);
currentStencilBackFunc=func;
currentStencilBackRef=ref;
currentStencilBackValueMask=mask;
}
}elseif (face===gl.FRONT_AND_BACK){
if (func!==currentStencilFunc||ref!==currentStencilRef||mask!==currentStencilValueMask||func!==currentStencilBackFunc||ref!==currentStencilBackRef||mask!==currentStencilBackValueMask){
gl.stencilFuncSeparate(face,func,ref,mask);
currentStencilFunc=func;
currentStencilRef=ref;
currentStencilValueMask=mask;
currentStencilBackFunc=func;
currentStencilBackRef=ref;
currentStencilBackValueMask=mask;
}
}
},
stencilMask:(mask:number)=>{
if (mask!==currentStencilWriteMask||mask!==currentStencilBackWriteMask){
gl.stencilMask(mask);
currentStencilWriteMask=mask;
currentStencilBackWriteMask=mask;
}
},
stencilMaskSeparate:(face:number,mask:number)=>{
if (face===gl.FRONT){
if (mask!==currentStencilWriteMask){
gl.stencilMaskSeparate(face,mask);
currentStencilWriteMask=mask;
}
}elseif (face===gl.BACK){
if (mask!==currentStencilBackWriteMask){
gl.stencilMaskSeparate(face,mask);
currentStencilBackWriteMask=mask;
}
}elseif (face===gl.FRONT_AND_BACK){
if (mask!==currentStencilWriteMask||mask!==currentStencilBackWriteMask){
if (fail!==currentStencilFail||zfail!==currentStencilPassDepthFail||zpass!==currentStencilPassDepthPass||fail!==currentStencilBackFail||zfail!==currentStencilBackPassDepthFail||zpass!==currentStencilBackPassDepthPass){
if (fail!==currentStencilFail||zfail!==currentStencilPassDepthFail||zpass!==currentStencilPassDepthPass){
gl.stencilOpSeparate(face,fail,zfail,zpass);
currentStencilFail=fail;
currentStencilPassDepthFail=zfail;
currentStencilPassDepthPass=zpass;
}
}elseif (face===gl.BACK){
if (fail!==currentStencilBackFail||zfail!==currentStencilBackPassDepthFail||zpass!==currentStencilBackPassDepthPass){
gl.stencilOpSeparate(face,fail,zfail,zpass);
currentStencilBackFail=fail;
currentStencilBackPassDepthFail=zfail;
currentStencilBackPassDepthPass=zpass;
}
}elseif (face===gl.FRONT_AND_BACK){
if (fail!==currentStencilFail||zfail!==currentStencilPassDepthFail||zpass!==currentStencilPassDepthPass||fail!==currentStencilBackFail||zfail!==currentStencilBackPassDepthFail||zpass!==currentStencilBackPassDepthPass){
gl.stencilOpSeparate(face,fail,zfail,zpass);
currentStencilFail=fail;
currentStencilPassDepthFail=zfail;
currentStencilPassDepthPass=zpass;
currentStencilBackFail=fail;
currentStencilBackPassDepthFail=zfail;
currentStencilBackPassDepthPass=zpass;
}
}
},
enableVertexAttrib:(index:number)=>{
gl.enableVertexAttribArray(index);
vertexAttribsState[index]=1;
...
...
@@ -264,10 +394,24 @@ export function createState(gl: GLRenderingContext): WebGLState {