t3d. Query

A Query object provides single unified API for using WebGL asynchronus queries, which include query objects ('Occlusion' and 'Transform Feedback') and timer queries.

Constructor

new Query()

Extends

Methods

addEventListener(type, listener)

Adds a listener to an event type.
Parameters:
NameTypeDescription
typeStringThe type of event to listen to.
listenerfunctionThe function that gets called when the event is fired.

dispatchEvent(event)

Fire an event.
Parameters:
NameTypeDescription
eventObjectThe event that gets fired.

dispose()

Disposes the Query object. Rejects any pending query.

removeEventListener(type, listener)

Removes a listener from an event type.
Parameters:
NameTypeDescription
typeStringThe type of the listener that gets removed.
listenerfunctionThe listener function that gets removed.