WebGLRenderingContext.stencilFunc() - Web APIs 编辑

The WebGLRenderingContext.stencilFunc() method of the WebGL API sets the front and back function and reference value for stencil testing.

Stenciling enables and disables drawing on a per-pixel basis. It is typically used in multipass rendering to achieve special effects.

Syntax

void gl.stencilFunc(func, ref, mask);

Parameters

func
A GLenum specifying the test function. The default function is gl.ALWAYS. The possible values are:
  • gl.NEVER:       Never pass.
  • gl.LESS:         Pass if (ref & mask) <  (stencil & mask).
  • gl.EQUAL:       Pass if (ref & mask) =  (stencil & mask).
  • gl.LEQUAL:     Pass if (ref & mask) <= (stencil & mask).
  • gl.GREATER:   Pass if (ref & mask) >  (stencil & mask).
  • gl.NOTEQUAL: Pass if (ref & mask) != (stencil & mask).
  • gl.GEQUAL:     Pass if (ref & mask) >= (stencil & mask).
  • gl.ALWAYS:     Always pass.
ref
A GLint specifying the reference value for the stencil test. This value is clamped to the range 0 to 2n -1 where n is the number of bitplanes in the stencil buffer. The default value is 0.
mask
A GLuint specifying a bit-wise mask that is used to AND the reference value and the stored stencil value when the test is done. The default value is all 1.

Return value

None.

Examples

The stencil testing is disabled by default. To enable or disable stencil testing, use the enable() and disable() methods with the argument gl.STENCIL_TEST.

gl.enable(gl.STENCIL_TEST);
gl.stencilFunc(gl.LESS, 0, 0b1110011);

To get the current stencil function, reference value, or other stencil information, query the following constants with getParameter().

gl.getParameter(gl.STENCIL_FUNC);
gl.getParameter(gl.STENCIL_VALUE_MASK);
gl.getParameter(gl.STENCIL_REF);
gl.getParameter(gl.STENCIL_BACK_FUNC);
gl.getParameter(gl.STENCIL_BACK_VALUE_MASK);
gl.getParameter(gl.STENCIL_BACK_REF);
gl.getParameter(gl.STENCIL_BITS);

Specifications

SpecificationStatusComment
WebGL 1.0
The definition of 'stencilFunc' in that specification.
RecommendationInitial definition.
OpenGL ES 2.0
The definition of 'glStencilFunc' in that specification.
StandardMan page of the OpenGL API.

Browser compatibility

BCD tables only load in the browser

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:77 次

字数:5756

最后编辑:6年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文