WebGLRenderingContext: createFramebuffer() method
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Note: This feature is available in Web Workers.
Phương thức WebGLRenderingContext.createFramebuffer() của WebGL API tạo và khởi tạo một đối tượng WebGLFramebuffer.
Cú pháp
js
createFramebuffer()
Thông số
Không có.
Giá trị trả về
Một đối tượng WebGLFramebuffer.
Ví dụ
>Tạo bộ đệm khung
js
const canvas = document.getElementById("canvas");
const gl = canvas.getContext("webgl");
const framebuffer = gl.createFramebuffer();
Thông số kỹ thuật
| Thông số kỹ thuật |
|---|
| WebGL Specification> # 5.14.6> |