Movatterモバイル変換


[0]ホーム

URL:


  1. 面向开发者的 Web 技术
  2. Web API
  3. WebGLFramebuffer

此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in EnglishAlways switch to English

WebGLFramebuffer

Baseline Widely available *

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015年7月⁩.

* Some parts of this feature may have varying levels of support.

WebGLFramebuffer 接口时WebGL API 的一部分,它提供了一个缓冲区的集合,这些缓冲区可以作为一个整体用作渲染操作的目标缓冲区。

摘要

WebGLFramebuffer 对象的内容不能直接访问,因此该对象没有定义任何用于操作其自身内容的方法和属性。需要使用WebGLFramebuffer 对象时,请使用WebGLRenderingContext 对象的以下方法:

示例

创建一个帧缓冲

js
var canvas = document.getElementById("canvas");var gl = canvas.getContext("webgl");var buffer = gl.createFramebuffer();

规范

Specification
WebGL Specification
# 5.5

浏览器兼容性

参见

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp