The WebGLRenderingContext.stencilOp() method of the WebGL API sets both the front and back-facing stencil test actions.
KEEP
ZERO
REPLACE
INCR
INCR_WRAP
DECR
DECR_WRAP
INVERT
https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/stencilOp
Generated using TypeDoc
The WebGLRenderingContext.stencilOp() method of the WebGL API sets both the front and back-facing stencil test actions.
KEEP
保持当前值。ZERO
设置模板缓冲值为0REPLACE
将模板缓冲区的值设置为WebGLRenderingContext.stencilFunc()指定的参考值。INCR
增加当前模板缓冲区的值。最大到可表示的无符号值的最大值。INCR_WRAP
增加当前模板缓冲区的值。当增加最大的可表示无符号值时,将模板缓冲区值包装为零。DECR
递减当前模板缓冲区的值。最小为0。DECR_WRAP
递减当前模板缓冲区的值。当模板缓冲区值减为0时,将模板缓冲区值包装为可表示的最大无符号值。INVERT
按位反转当前模板缓冲区值。See
https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/stencilOp