Firefox Tomorrow

webgl extension method

EXT_disjoint_timer_query: deleteQueryEXT() method

View on MDN ↗

The EXT_disjoint_timer_query.deleteQueryEXT() method of the WebGL API deletes a given WebGLQuery object.

Syntax

deleteQueryEXT(query)

Parameters

Return value

None (undefined).

Examples

const ext = gl.getExtension("EXT_disjoint_timer_query");
const query = ext.createQueryEXT();

// …

ext.deleteQueryEXT(query);

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also