EXT_disjoint_timer_query: endQueryEXT() Methode

Limited availability

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

Die EXT_disjoint_timer_query.endQueryEXT() Methode der WebGL API beendet eine Timer-Abfrage.

Syntax

js
endQueryEXT(target)

Parameter

target

Ein GLenum, das das Ziel der Zeitabfrage spezifiziert. Muss ext.TIME_ELAPSED_EXT sein.

Rückgabewert

Keiner (undefined).

Beispiele

js
const ext = gl.getExtension("EXT_disjoint_timer_query");
const query = ext.createQueryEXT();
ext.beginQueryEXT(ext.TIME_ELAPSED_EXT, query);

// …

ext.endQueryEXT(ext.TIME_ELAPSED_EXT);

Spezifikationen

Specification
WebGL EXT_disjoint_timer_query Extension Specification

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch