内容表

上一话题

QOpenGLTextureBlitter

下一话题

QOpenGLTimerQuery

QOpenGLTimeMonitor

QOpenGLTimeMonitor class wraps a sequence of OpenGL timer query objects. 更多

Inheritance diagram of PySide2.QtGui.QOpenGLTimeMonitor

New in version 5.1.

详细描述

QOpenGLTimeMonitor class is a convenience wrapper around a collection of OpenGL timer query objects used to measure intervals of time on the GPU to the level of granularity required by your rendering application.

The OpenGL timer queries objects are queried in sequence to record the GPU timestamps at positions of interest in your rendering code. Once the results for all issues timer queries become available, the results can be fetched and QOpenGLTimerMonitor will calculate the recorded time intervals for you.

The typical use case of this class is to either profile your application’s rendering algorithms or to adjust those algorithms in real-time for dynamic performance/quality balancing.

Prior to using QOpenGLTimeMonitor in your rendering function you should set the required number of sample points that you wish to record by calling setSamples(). Note that measuring N sample points will produce N-1 time intervals. Once you have set the number of sample points, call the create() function with a valid current OpenGL context to create the necessary query timer objects. These steps are usually performed just once in an initialization function.

使用 recordSample() function to delimit blocks of code containing OpenGL commands that you wish to time. You can check availability of the resulting time samples and time intervals with isResultAvailable() . The calculated time intervals and the raw timestamp samples can be retrieved with the blocking waitForIntervals() and waitForSamples() functions respectively.

After retrieving the results and before starting a new round of taking samples (for example, in the next frame) be sure to call the reset() function which will clear the cached results and reset the timer index back to the first timer object.

另请参阅

QOpenGLTimerQuery

class QOpenGLTimeMonitor ( [ parent=None ] )
param parent

QObject

创建 QOpenGLTimeMonitor instance with the given parent . You must call create() with a valid OpenGL context before using.

PySide2.QtGui.QOpenGLTimeMonitor. create ( )
返回类型

bool

实例化 sampleCount() OpenGL timer query objects that will be used to track the amount of time taken to execute OpenGL commands between successive calls to recordSample() .

返回 true if the OpenGL timer query objects could be created.

PySide2.QtGui.QOpenGLTimeMonitor. destroy ( )

Destroys any OpenGL timer query objects used within this instance.

另请参阅

create()

PySide2.QtGui.QOpenGLTimeMonitor. isCreated ( )
返回类型

bool

返回 true if the underlying OpenGL query objects have been created. If this returns true and the associated OpenGL context is current, then you are able to record time samples with this object.

PySide2.QtGui.QOpenGLTimeMonitor. isResultAvailable ( )
返回类型

bool

返回 true if the OpenGL timer query results are available.

PySide2.QtGui.QOpenGLTimeMonitor. objectIds ( )
返回类型

返回 QVector containing the object Ids of the OpenGL timer query objects.

PySide2.QtGui.QOpenGLTimeMonitor. recordSample ( )
返回类型

int

Issues an OpenGL timer query at this point in the OpenGL command queue. Calling this function in a sequence in your application’s rendering function, will build up details of the GPU time taken to execute the OpenGL commands between successive calls to this function.

PySide2.QtGui.QOpenGLTimeMonitor. reset ( )

Resets the time monitor ready for use in another frame of rendering. Call this once you have obtained the previous results and before calling recordSample() for the first time on the next frame.

另请参阅

recordSample()

PySide2.QtGui.QOpenGLTimeMonitor. sampleCount ( )
返回类型

int

Returns the number of sample points that have been requested with setSampleCount() . If create was successfully called following setSampleCount() , then the value returned will be the actual number of sample points that can be used.

The default value for sample count is 2, leading to the measurement of a single interval.

另请参阅

setSampleCount()

PySide2.QtGui.QOpenGLTimeMonitor. setSampleCount ( sampleCount )
参数

sampleCount int

Sets the number of sample points to sampleCount . After setting the number of samples with this function, you must call create() to instantiate the underlying OpenGL timer query objects.

The new sampleCount must be at least 2.

PySide2.QtGui.QOpenGLTimeMonitor. waitForIntervals ( )
返回类型

返回 QVector containing the time intervals delimited by the calls to recordSample() . The resulting vector will contain one fewer element as this represents the intervening intervals rather than the actual timestamp samples.

This function will block until OpenGL indicates the results are available. It is recommended to check the availability of the result prior to calling this function with isResultAvailable() .

PySide2.QtGui.QOpenGLTimeMonitor. waitForSamples ( )
返回类型

返回 QVector containing the GPU timestamps taken with recordSample() .

This function will block until OpenGL indicates the results are available. It is recommended to check the availability of the result prior to calling this function with isResultAvailable() .

注意

This function only works on systems that have OpenGL >=3.3 or the ARB_timer_query extension. See QOpenGLTimerQuery 了解更多细节。