Search completed in 1.72 seconds.
5 results for "GetQueryParameter":
WebGL2RenderingContext.getQueryParameter() - Web APIs
WebAPIWebGL2RenderingContextgetQueryParameter
the webgl2renderingcontext.getqueryparameter() method of the webgl 2 api returns parameter information of a webglquery object.
... syntax any gl.getqueryparameter(query, pname); parameters query a webglquery object.
... examples var query = gl.createquery(); gl.beginquery(gl.any_samples_passed, query); var result = gl.getqueryparameter(query, gl.query_result); specifications specification status comment webgl 2.0the definition of 'getqueryparameter' in that specification.
EXT_disjoint_timer_query - Web APIs
WebAPIEXT disjoint timer query
in webgl 2, the getqueryobject was renamed to getqueryparameter.
Index - Web APIs
WebAPIIndex
4647 webgl2renderingcontext.getqueryparameter() api, experimental, method, reference, webgl, webgl2 the webgl2renderingcontext.getqueryparameter() method of the webgl 2 api returns parameter information of a webglquery object.
WebGL2RenderingContext - Web APIs
WebAPIWebGL2RenderingContext
webgl2renderingcontext.getqueryparameter() returns information about a query.
WebGLQuery - Web APIs
WebAPIWebGLQuery
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() examples creating a webglquery object in this example, gl must be a webgl2renderingcontext.