Firefox Tomorrow

web api instance method

WebGL2RenderingContext: createQuery() method

View on MDN ↗

Available in workers

The WebGL2RenderingContext.createQuery() method of the WebGL 2 API creates and initializes WebGLQuery objects, which provide ways to asynchronously query for information.

Syntax

createQuery()

Parameters

None.

Return value

A WebGLQuery object.

Examples

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

const query = gl.createQuery();

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also