QOffscreenSurface Class
The QOffscreenSurface class represents an offscreen surface in the underlying platform. More...
Header: | #include <QOffscreenSurface> |
qmake: | QT += gui |
Since: | Qt 5.1 |
Inherits: | QObject and QSurface. |
Public Functions
QOffscreenSurface(QScreen * targetScreen = 0) | |
virtual | ~QOffscreenSurface() |
void | create() |
void | destroy() |
bool | isValid() const |
QSurfaceFormat | requestedFormat() const |
QScreen * | screen() const |
void | setFormat(const QSurfaceFormat & format) |
void | setScreen(QScreen * newScreen) |
Reimplemented Public Functions
virtual QSurfaceFormat | format() const |
virtual QSize | size() const |
virtual SurfaceType | surfaceType() const |
Signals
void | screenChanged(QScreen * screen) |
- 2 signals inherited from QObject
Additional Inherited Members
- 1 property inherited from QObject
- 1 public slot inherited from QObject
- 1 public variable inherited from QObject
- 10 static public members inherited from QObject
- 9 protected functions inherited from QObject
- 2 protected variables inherited from QObject
Detailed Description
The QOffscreenSurface class represents an offscreen surface in the underlying platform.
QOffscreenSurface is intended to be used with QOpenGLContext to allow rendering with OpenGL in an arbitrary thread without the need to create a QWindow.
Even though the surface is renderable, the surface's pixels are not accessible. QOffscreenSurface should only be used to create OpenGL resources such as textures or framebuffer objects.
An application will typically use QOffscreenSurface to perform some time-consuming tasks in a separate thread in order to avoid stalling the main rendering thread. Resources created in the QOffscreenSurface's context can be shared with the main OpenGL context. Some common use cases are asynchronous texture uploads or rendering into a QOpenGLFramebufferObject.
How the offscreen surface is implemented depends on the underlying platform, but it will typically use a pixel buffer (pbuffer). If the platform doesn't implement or support offscreen surfaces, QOffscreenSurface will use an invisible QWindow internally.
Member Function Documentation
QOffscreenSurface::QOffscreenSurface(QScreen * targetScreen = 0)
Creates an offscreen surface for the targetScreen.
The underlying platform surface is not created until create() is called.
See also setScreen() and create().
QOffscreenSurface::~QOffscreenSurface() [virtual]
Destroys the offscreen surface.
void QOffscreenSurface::create()
Allocates the platform resources associated with the offscreen surface.
It is at this point that the surface format set using setFormat() gets resolved into an actual native surface.
Call destroy() to free the platform resources if necessary.
See also destroy().
void QOffscreenSurface::destroy()
Releases the native platform resources associated with this offscreen surface.
See also create().
QSurfaceFormat QOffscreenSurface::format() const [virtual]
Reimplemented from QSurface::format().
Returns the actual format of this offscreen surface.
After the offscreen surface has been created, this function will return the actual surface format of the surface. It might differ from the requested format if the requested format could not be fulfilled by the platform.
See also setFormat(), create(), and requestedFormat().
bool QOffscreenSurface::isValid() const
Returns true if this offscreen surface is valid; otherwise returns false.
The offscreen surface is valid if the platform resources have been successfuly allocated.
See also create().
QSurfaceFormat QOffscreenSurface::requestedFormat() const
Returns the requested surfaceformat of this offscreen surface.
If the requested format was not supported by the platform implementation, the requestedFormat will differ from the actual offscreen surface format.
This is the value set with setFormat().
See also setFormat() and format().
QScreen * QOffscreenSurface::screen() const
Returns the screen to which the offscreen surface is connected.
See also setScreen().
void QOffscreenSurface::screenChanged(QScreen * screen) [signal]
This signal is emitted when an offscreen surface's screen changes, either by being set explicitly with setScreen(), or automatically when the window's screen is removed.
void QOffscreenSurface::setFormat(const QSurfaceFormat & format)
Sets the offscreen surface format.
The surface format will be resolved in the create() function. Calling this function after create() will not re-resolve the surface format of the native surface.
See also format(), create(), and destroy().
void QOffscreenSurface::setScreen(QScreen * newScreen)
Sets the screen to which the offscreen surface is connected.
If the offscreen surface has been created, it will be recreated on the newScreen.
See also screen().
QSize QOffscreenSurface::size() const [virtual]
Reimplemented from QSurface::size().
Returns the size of the offscreen surface.
SurfaceType QOffscreenSurface::surfaceType() const [virtual]
Reimplemented from QSurface::surfaceType().
Returns the surface type of the offscreen surface.
The surface type of an offscreen surface is always QSurface::OpenGLSurface.