QOpenGLTimerQuery

The QOpenGLTimerQuery class wraps an OpenGL timer query object. More

Inheritance diagram of PySide2.QtGui.QOpenGLTimerQuery

New in version 5.1.

Synopsis

Functions

Detailed Description

OpenGL timer query objects are OpenGL managed resources to measure the execution times of sequences of OpenGL commands on the GPU.

OpenGL offers various levels of support for timer queries, depending on the version of OpenGL you have and the presence of the ARB_timer_query or EXT_timer_query extensions. The support can be summarized as:

  • OpenGL >=3.3 offers full support for all timer query functionality.

  • OpenGL 3.2 with the ARB_timer_query extension offers full support for all timer query functionality.

  • OpenGL <=3.2 with the EXT_timer_query extension offers limited support in that the timestamp of the GPU cannot be queried. Places where this impacts functions provided by Qt classes will be highlighted in the function documentation.

  • OpenGL ES 2 (and OpenGL ES 3) do not provide any support for OpenGL timer queries.

OpenGL represents time with a granularity of 1 nanosecond (1e-9 seconds). As a consequence of this, 32-bit integers would only give a total possible duration of approximately 4 seconds, which would not be difficult to exceed in poorly performing or lengthy operations. OpenGL therefore uses 64 bit integer types to represent times. A GLuint64 variable has enough width to contain a duration of hundreds of years, which is plenty for real-time rendering needs.

As with the other Qt OpenGL classes, QOpenGLTimerQuery has a create() function to create the underlying OpenGL object. This is to allow the developer to ensure that there is a valid current OpenGL context at the time.

Once created, timer queries can be issued in one of several ways. The simplest method is to delimit a block of commands with calls to begin() and end() . This instructs OpenGL to measure the time taken from completing all commands issued prior to begin() until the completion of all commands issued prior to end() .

At the end of a frame we can retrieve the results by calling waitForResult() . As this function’s name implies, it blocks CPU execution until OpenGL notifies that the timer query result is available. To avoid blocking, you can check if the query result is available by calling isResultAvailable() . Note that modern GPUs are deeply pipelined and query results may not become available for between 1-5 frames after they were issued.

Note that OpenGL does not permit nesting or interleaving of multiple timer queries using begin() and end() . Using multiple timer queries and recordTimestamp() avoids this limitation. When using recordTimestamp() the result can be obtained at some later time using isResultAvailable() and waitForResult() . Qt provides the convenience class QOpenGLTimeMonitor that helps with using multiple query objects.

class PySide2.QtGui.QOpenGLTimerQuery([parent=None])
param parent:

PySide2.QtCore.QObject

Creates a QOpenGLTimerQuery instance with the given parent . You must call create() with a valid OpenGL context before using.

PySide2.QtGui.QOpenGLTimerQuery.begin()

Marks the start point in the OpenGL command queue for a sequence of commands to be timed by this query object.

This is useful for simple use-cases. Usually it is better to use recordTimestamp() .

See also

end() isResultAvailable() waitForResult() recordTimestamp()

PySide2.QtGui.QOpenGLTimerQuery.create()
Return type:

bool

Creates the underlying OpenGL timer query object. There must be a valid OpenGL context that supports query objects current for this function to succeed.

Returns true if the OpenGL timer query object was successfully created.

PySide2.QtGui.QOpenGLTimerQuery.destroy()

Destroys the underlying OpenGL timer query object. The context that was current when create() was called must be current when calling this function.

PySide2.QtGui.QOpenGLTimerQuery.end()

Marks the end point in the OpenGL command queue for a sequence of commands to be timed by this query object.

This is useful for simple use-cases. Usually it is better to use recordTimestamp() .

See also

begin() isResultAvailable() waitForResult() recordTimestamp()

PySide2.QtGui.QOpenGLTimerQuery.isCreated()
Return type:

bool

Returns true if the underlying OpenGL query object has been created. If this returns true and the associated OpenGL context is current, then you are able to issue queries with this object.

PySide2.QtGui.QOpenGLTimerQuery.isResultAvailable()
Return type:

bool

Returns true if the OpenGL timer query result is available.

This function is non-blocking and ideally should be used to check for the availability of the query result before calling waitForResult() .

See also

waitForResult()

PySide2.QtGui.QOpenGLTimerQuery.objectId()
Return type:

GLuint

Returns the id of the underlying OpenGL query object.

PySide2.QtGui.QOpenGLTimerQuery.recordTimestamp()

Places a marker in the OpenGL command queue for the GPU to record the timestamp when this marker is reached by the GPU. This function is non-blocking and the result will become available at some later time.

The availability of the result can be checked with isResultAvailable() . The result can be fetched with waitForResult() which will block if the result is not yet available.

See also

waitForResult() isResultAvailable() begin() end()