WebGLRenderingContext: deleteFramebuffer() 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.deleteFramebuffer() của WebGL API xóa một đối tượng WebGLFramebuffer đã cho. Phương pháp này không có hiệu lực nếu bộ đệm khung đã bị xóa.
Cú pháp
js
deleteFramebuffer(framebuffer)
Thông số
framebuffer-
Một đối tượng
WebGLFramebuffercần xóa.
Giá trị trả về
Không có (undefined).
Ví dụ
>Xóa bộ đệm khung
js
const canvas = document.getElementById("canvas");
const gl = canvas.getContext("webgl");
const framebuffer = gl.createFramebuffer();
// …
gl.deleteFramebuffer(framebuffer);
Thông số kỹ thuật
| Thông số kỹ thuật |
|---|
| WebGL Specification> # 5.14.6> |