WebGLRenderingContext.depthFunc() - Web APIs 编辑

The WebGLRenderingContext.depthFunc() method of the WebGL API specifies a function that compares incoming pixel depth to the current depth buffer value.

Syntax

void gl.depthFunc(func);

Parameters

func
A GLenum specifying the depth comparison function, which sets the conditions under which the pixel will be drawn. The default value is gl.LESS. Possible values are:
  • gl.NEVER (never pass)
  • gl.LESS (pass if the incoming value is less than the depth buffer value)
  • gl.EQUAL (pass if the incoming value equals the depth buffer value)
  • gl.LEQUAL (pass if the incoming value is less than or equal to the depth buffer value)
  • gl.GREATER (pass if the incoming value is greater than the depth buffer value)
  • gl.NOTEQUAL (pass if the incoming value is not equal to the depth buffer value)
  • gl.GEQUAL (pass if the incoming value is greater than or equal to the depth buffer value)
  • gl.ALWAYS (always pass)

Return value

None.

Examples

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

gl.enable(gl.DEPTH_TEST);
gl.depthFunc(gl.NEVER);

To check the current depth function, query the DEPTH_FUNC constant.

gl.getParameter(gl.DEPTH_FUNC) === gl.NEVER;
// true

Specifications

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

Browser compatibility

BCD tables only load in the browser

See also

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

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

发布评论

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

词条统计

浏览:74 次

字数:3990

最后编辑:8年前

编辑次数:0 次

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