QQuickRenderControl Class

The QQuickRenderControl class provides a mechanism for rendering the Qt Quick scenegraph onto an offscreen render target in a fully application-controlled manner. More...

Header: #include <QQuickRenderControl>
qmake: QT += quick
Since: Qt 5.4
Inherits: QObject.

Public Functions

QQuickRenderControl(QObject * parent = 0)
~QQuickRenderControl()
QImage grab()
void initialize(QOpenGLContext * gl)
void invalidate()
void polishItems()
void render()
virtual QWindow * renderWindow(QPoint * offset)
bool sync()
  • 31 public functions inherited from QObject

Signals

Static Public Members

QWindow * renderWindowFor(QQuickWindow * win, QPoint * offset = 0)
  • 11 static public members inherited from QObject

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 9 protected functions inherited from QObject

Detailed Description

The QQuickRenderControl class provides a mechanism for rendering the Qt Quick scenegraph onto an offscreen render target in a fully application-controlled manner.

QQuickWindow and QQuickView and their associated internal render loops render the Qt Quick scene onto a native window. In some cases, for example when integrating with 3rd party OpenGL renderers, it might be beneficial to get the scene into a texture that can then be used in arbitrary ways by the external rendering engine. QQuickRenderControl makes this possible in a hardware accelerated manner, unlike the performance-wise limited alternative of using QQuickWindow::grabWindow()

When using a QQuickRenderControl, the QQuickWindow does not have to be shown or even created at all. This means there will not be an underlying native window for it. Instead, the QQuickWindow instance is associated with the render control, using the overload of the QQuickWindow constructor, and an OpenGL framebuffer object by calling QQuickWindow::setRenderTarget().

Management of the context and framebuffer object is up to the application. The context that will be used by Qt Quick must be created before calling initialize(). The creation of the framebuffer object can be deferred, see below. Qt 5.4 introduces the ability for QOpenGLContext to adopt existing native contexts. Together with QQuickRenderControl this makes it possible to create a QOpenGLContext that shares with an external rendering engine's existing context. This new QOpenGLContext can then be used to render the Qt Quick scene into a texture that is accessible by the other engine's context too.

Loading and instantiation of the QML components happen by using a QQmlEngine. Once the root object is created, it will need to be parented to the QQuickWindow's contentItem().

Applications will usually have to connect to 4 important signals:

To send events, for example mouse or keyboard events, to the scene, use QCoreApplication::sendEvent() with the QQuickWindow instance as the receiver.

Member Function Documentation

QQuickRenderControl::​QQuickRenderControl(QObject * parent = 0)

QQuickRenderControl::​~QQuickRenderControl()

Destroys the instance. Releases all scenegraph resources.

See also invalidate().

QImage QQuickRenderControl::​grab()

Grabs the contents of the scene and returns it as an image.

Note: Requires the context to be current.

void QQuickRenderControl::​initialize(QOpenGLContext * gl)

Initializes the scene graph resources. The context gl has to be the current context.

void QQuickRenderControl::​invalidate()

Stop rendering and release resources. Requires a current context.

This is the equivalent of the cleanup operations that happen with a real QQuickWindow when the window becomes hidden.

This function is called from the destructor. Therefore there will typically be no need to call it directly. Pay attention however to the fact that this requires the context, that was passed to initialize(), to be the current one at the time of destroying the QQuickRenderControl instance.

Once invalidate() has been called, it is possible to reuse the QQuickRenderControl instance by calling initialize() again.

Note: This function does not take QQuickWindow::persistentSceneGraph() or QQuickWindow::persistentOpenGLContext() into account. This means that context-specific resources are always released.

void QQuickRenderControl::​polishItems()

This function should be called as late as possible before sync(). In a threaded scenario, rendering can happen in parallel with this function.

void QQuickRenderControl::​render()

Renders the scenegraph using the current context.

[signal] void QQuickRenderControl::​renderRequested()

This signal is emitted when the scene graph needs to be rendered. It is not necessary to call sync().

[virtual] QWindow * QQuickRenderControl::​renderWindow(QPoint * offset)

Reimplemented in subclasses to return the real window this render control is rendering into.

If offset in non-null, it is set to the offset of the control inside the window.

[static] QWindow * QQuickRenderControl::​renderWindowFor(QQuickWindow * win, QPoint * offset = 0)

Returns the real window that win is being rendered to, if any.

If offset in non-null, it is set to the offset of the rendering inside its window.

[signal] void QQuickRenderControl::​sceneChanged()

This signal is emitted when the scene graph is updated, meaning that polishItems() and sync() needs to be called. If sync() returns true, then render() needs to be called.

bool QQuickRenderControl::​sync()

This function is used to synchronize the QML scene with the rendering scene graph.

If a dedicated render thread is used, the GUI thread should be blocked for the duration of this call.

Returns true if the synchronization changed the scene graph.

© 2015 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.