The EXT_disjoint_timer_query extension is part of the WebGL API provides a way to measure the duration of a set of GL commands, stalling the rendering pipeline.
The EXT_disjoint_timer_query extension is part of the WebGL API provides a way to measure the duration of a set of GL commands, stalling the rendering pipeline.
(begin-query-ext this target query)
Method.
The EXT_disjoint_timer_query.beginQueryEXT() method of the WebGL starts a timer query.
void ext.beginQueryEXT(target, query);
See also: https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/beginQueryEXT
Method. The EXT_disjoint_timer_query.beginQueryEXT() method of the WebGL starts a timer query. `void ext.beginQueryEXT(target, query);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/beginQueryEXT`
(create-query-ext this)
Method.
The EXT_disjoint_timer_query.createQueryEXT() method of the WebGL
creates and initializes web.gl.WebGLQuery
objects, which track
time needed to fully complete a set of GL commands.
WebGLTimerQueryEXT ext.createQueryEXT();
See also: https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/createQueryEXT
Method. The EXT_disjoint_timer_query.createQueryEXT() method of the WebGL creates and initializes `web.gl.WebGLQuery` objects, which track time needed to fully complete a set of GL commands. `WebGLTimerQueryEXT ext.createQueryEXT();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/createQueryEXT`
(delete-query-ext this query)
Method.
The EXT_disjoint_timer_query.deleteQueryEXT() method of the WebGL
deletes a given web.gl.WebGLQuery
object.
void ext.deleteQueryEXT(query);
See also: https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/deleteQueryEXT
Method. The EXT_disjoint_timer_query.deleteQueryEXT() method of the WebGL deletes a given `web.gl.WebGLQuery` object. `void ext.deleteQueryEXT(query);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/deleteQueryEXT`
(end-query-ext this target)
Method.
The EXT_disjoint_timer_query.endQueryEXT() method of the WebGL ends a timer query.
void ext.endQueryEXT(target);
See also: https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/endQueryEXT
Method. The EXT_disjoint_timer_query.endQueryEXT() method of the WebGL ends a timer query. `void ext.endQueryEXT(target);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/endQueryEXT`
(get-query-ext this target pname)
Method.
The EXT_disjoint_timer_query.getQueryEXT() method of the WebGL returns information about a query target.
any ext.getQueryEXT(target, pname);
See also: https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/getQueryEXT
Method. The EXT_disjoint_timer_query.getQueryEXT() method of the WebGL returns information about a query target. `any ext.getQueryEXT(target, pname);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/getQueryEXT`
(get-query-object-ext this query pname)
Method.
The EXT_disjoint_timer_query.getQueryObjectEXT() method of the API returns the state of a query object.
any ext.getQueryObjectEXT(query, pname);
See also: https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/getQueryObjectEXT
Method. The EXT_disjoint_timer_query.getQueryObjectEXT() method of the API returns the state of a query object. `any ext.getQueryObjectEXT(query, pname);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/getQueryObjectEXT`
(is-query-ext this query)
Method.
The EXT_disjoint_timer_query.isQueryEXT() method of the WebGL
returns true if the passed object is a web.gl.WebGLQuery
object.
GLBoolean ext.isQueryEXT(query);
See also: https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/isQueryEXT
Method. The EXT_disjoint_timer_query.isQueryEXT() method of the WebGL returns true if the passed object is a `web.gl.WebGLQuery` object. `GLBoolean ext.isQueryEXT(query);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/isQueryEXT`
(query-counter-ext this query target)
Method.
The EXT_disjoint_timer_query.queryCounterEXT() method of the API records the current time into the corresponding query object.
void ext.queryCounterEXT(query, target);
See also: https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/queryCounterEXT
Method. The EXT_disjoint_timer_query.queryCounterEXT() method of the API records the current time into the corresponding query object. `void ext.queryCounterEXT(query, target);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/EXT_disjoint_timer_query/queryCounterEXT`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close