Lines Matching +full:- +full:- +full:query +full:- +full:gpu
4 * Use of this source code is governed by a BSD-style license that can be
21 * Platform-independent interface for timing operations on the GPU.
32 * Returns whether this timer can detect disjoint GPU operations while timing. If false, a query
38 * Inserts a "start timing" command in the GPU command stream.
42 fActiveTimer = this->onQueueTimerStart(); in queueStart()
46 * Inserts a "stop timing" command in the GPU command stream.
48 * @return a query object that can retrieve the time elapsed once the timer has completed.
52 this->onQueueTimerStop(fActiveTimer); in queueStop()
57 kInvalid, //<! the timer query is invalid.
58 kPending, //<! the timer is still running on the GPU.
59 kDisjoint, //<! the query is complete, but dubious due to disjoint GPU operations.
60 kAccurate //<! the query is complete and reliable.