Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. EXT_disjoint_timer_query

EXT_disjoint_timer_query extension

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

TheEXT_disjoint_timer_query extension is part of theWebGL API and provides a way to measure the duration of a set of GL commands, without stalling the rendering pipeline.

WebGL extensions are available using theWebGLRenderingContext.getExtension() method. For more information, see alsoUsing Extensions in theWebGL tutorial.

Note:This extension should be available inWebGL1 contexts only.EXT_disjoint_timer_query_webgl2 is available inWebGL 2 contexts.

In WebGL 2, the OpenGL methodgetQueryObject() is renamed toWebGL2RenderingContext.getQueryParameter.In WebGL 2, other queries (such as occlusion queries and primitive queries) are possible usingWebGLQuery objects.

Types

This extension exposes a new type:

GLuint64EXT

Unsigned 64-bit integer number.

Constants

This extension exposes seven new constants.

ext.QUERY_COUNTER_BITS_EXT

AGLint indicating the number of bits used to hold the query result for the given target.

ext.CURRENT_QUERY_EXT

AWebGLQuery object, which is the currently active query for the given target.

ext.QUERY_RESULT_EXT

AGLuint64EXT containing the query result.

ext.QUERY_RESULT_AVAILABLE_EXT

AGLboolean indicating whether or not a query result is available.

ext.TIME_ELAPSED_EXT

Elapsed time (in nanoseconds).

ext.TIMESTAMP_EXT

The current time.

ext.GPU_DISJOINT_EXT

AGLboolean indicating whether or not the GPU performed any disjoint operation.

Instance methods

This extension exposes eight new methods.

ext.createQueryEXT()

Creates a newWebGLQuery.

ext.deleteQueryEXT()

Deletes a givenWebGLQuery.

ext.isQueryEXT()

Returnstrue if a given object is a validWebGLQuery.

ext.beginQueryEXT()

The timer starts when all commands prior tobeginQueryEXT have been fully executed.

ext.endQueryEXT()

The timer stops when all commands prior toendQueryEXT have been fully executed.

ext.queryCounterEXT()

Records the current time into the corresponding query object.

ext.getQueryEXT()

Returns information about a query target.

ext.getQueryObjectEXT()

Return the state of a query object.

Examples

js
const ext = gl.getExtension("EXT_disjoint_timer_query");

Specifications

Specification
WebGL EXT_disjoint_timer_query Extension Specification

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp