WebGLRenderingContext: createFramebuffer() 方法

基线 广泛可用

此功能已经成熟,可以在许多设备和浏览器版本中运行。它自 2015 年 7 月.

报告反馈

语法

The WebGLRenderingContext.createFramebuffer() method of the WebGL API creates and initializes a WebGLFramebuffer object.
createFramebuffer()

js

参数

无。

返回值

示例

A WebGLFramebuffer object.

The WebGLRenderingContext.createFramebuffer() method of the WebGL API creates and initializes a WebGLFramebuffer object.
const canvas = document.getElementById("canvas");
const gl = canvas.getContext("webgl");
const framebuffer = gl.createFramebuffer();

规范

创建帧缓冲区
规范
# 5.14.6

浏览器兼容性

WebGL 规范

另请参阅