web api instance method
WebGL2RenderingContext: getQueryParameter() method
Available in workers
The WebGL2RenderingContext.getQueryParameter() method of
the WebGL 2 API returns parameter
information of a WebGLQuery object.
Syntax
getQueryParameter(query, pname)
Parameters
query- : A
WebGLQueryobject.
- : A
pname
Return value
Depends on the pname parameter, either a GLuint or a
GLboolean.
Examples
const query = gl.createQuery();
gl.beginQuery(gl.ANY_SAMPLES_PASSED, query);
const result = gl.getQueryParameter(query, gl.QUERY_RESULT);
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.