WebGLRenderingContext.createFramebuffer()

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

Syntax

WebGLFramebuffer gl.createFramebuffer();

Parameters

None.

Return value

A WebGLFramebuffer object.

Examples

Creating a frame buffer

var canvas = document.getElementById('canvas');
var gl = canvas.getContext('webgl');
var framebuffer = gl.createFramebuffer();

Specifications

Specification
WebGL Specification
# 5.14.6

Browser compatibility

BCD tables only load in the browser

See also