Baseline Widely available
Note: This feature is available in Web Workers.
The WebGLQuery
interface is part of the WebGL 2 API and provides ways to asynchronously query for information. By default, occlusion queries and primitive queries are available.
Another kind of queries are disjoint timer queries, which allow you to measure performance and profiling of your GPU. Disjoint timer queries are available with the EXT_disjoint_timer_query
extension only.
When working with WebGLQuery
objects, the following methods of the WebGL2RenderingContext
are useful:
WebGL2RenderingContext.createQuery()
WebGL2RenderingContext.deleteQuery()
WebGL2RenderingContext.isQuery()
WebGL2RenderingContext.beginQuery()
WebGL2RenderingContext.endQuery()
WebGL2RenderingContext.getQuery()
WebGL2RenderingContext.getQueryParameter()
WebGLQuery
object
in this example, gl
must be a WebGL2RenderingContext
. WebGLQuery
objects are not available in WebGL 1.
const query = gl.createQuery();
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4