Firefox Tomorrow

web api instance method

WebGL2RenderingContext: createSampler() method

View on MDN ↗

Available in workers

The WebGL2RenderingContext.createSampler() method of the WebGL 2 API creates and initializes WebGLSampler objects.

Syntax

createSampler()

Parameters

None.

Return value

A WebGLSampler object.

Examples

gl must be a WebGL2RenderingContext. WebGLSampler objects are not available in WebGL 1.

const sampler = gl.createSampler();

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also