WEBGL_draw_buffers.drawBuffersWEBGL() - Web APIs 编辑

The WEBGL_draw_buffers.drawBuffersWEBGL() method is part of the WebGL API and allows you to define the draw buffers to which all fragment colors are written.

This method is part of the WEBGL_draw_buffers extension.

Note: When using WebGL2, this method is available as gl.drawBuffers() by default and the constants are named gl.COLOR_ATTACHMENT1 etc. without the "WEBGL" suffix.

Syntax

void gl.getExtension('WEBGL_draw_buffers').drawBuffersWEBGL(buffers);

Parameters

    buffers
    An Array of GLenum constants defining drawing buffers. Possible values:
    • gl.NONE: The fragment shader is not written to any color buffer.
    • gl.BACK: The fragment shader is written to the back color buffer.
    • ext.COLOR_ATTACHMENT0_WEBGL The fragment shader is written the nth color attachment of the framebuffer.
    • ext.COLOR_ATTACHMENT1_WEBGL
    • ext.COLOR_ATTACHMENT2_WEBGL
    • ext.COLOR_ATTACHMENT3_WEBGL
    • ext.COLOR_ATTACHMENT4_WEBGL
    • ext.COLOR_ATTACHMENT5_WEBGL
    • ext.COLOR_ATTACHMENT6_WEBGL
    • ext.COLOR_ATTACHMENT7_WEBGL
    • ext.COLOR_ATTACHMENT8_WEBGL
    • ext.COLOR_ATTACHMENT9_WEBGL
    • ext.COLOR_ATTACHMENT10_WEBGL
    • ext.COLOR_ATTACHMENT11_WEBGL
    • ext.COLOR_ATTACHMENT12_WEBGL
    • ext.COLOR_ATTACHMENT13_WEBGL
    • ext.COLOR_ATTACHMENT14_WEBGL
    • ext.COLOR_ATTACHMENT15_WEBGL

    Return value

    None.

    Examples

    See WEBGL_draw_buffers for more context with this example code.

    ext.drawBuffersWEBGL([
      ext.COLOR_ATTACHMENT0_WEBGL, // gl_FragData[0]
      ext.COLOR_ATTACHMENT1_WEBGL, // gl_FragData[1]
      ext.COLOR_ATTACHMENT2_WEBGL, // gl_FragData[2]
      ext.COLOR_ATTACHMENT3_WEBGL  // gl_FragData[3]
    ]);

    Specifications

    SpecificationStatusComment
    WEBGL_draw_buffers
    The definition of 'WEBGL_draw_buffers' in that specification.
    RecommendationInitial definition.
    OpenGL ES 3.0
    The definition of 'glDrawBuffers' in that specification.
    StandardMan page of the (similar) OpenGL API.

    Browser compatibility

    BCD tables only load in the browser

    See also

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

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

    发布评论

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

    词条统计

    浏览:71 次

    字数:5600

    最后编辑:7年前

    编辑次数:0 次

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