文档库 最新最全的文档下载
当前位置:文档库 › qtquick-opengl

qtquick-opengl

qtquick-opengl
qtquick-opengl

The Scene Graph in Qt Quick

Qt Quick 2 makes use of a dedicated scene graph based on OpenGL ES 2.0 or OpenGL 2.0 for its rendering. Using a scene graph for graphics rather than the traditional imperative painting systems (QPainter and similar), means the scene to be rendered can be retained between frames and the complete set of primitives to render is known before rendering starts. This opens up for a number of optimizations, such as batch rendering to minimize state changes and discarding obscured primitives.

For example, say a user-interface contains a list of ten items where each item has a background color, an icon and a text. Using the traditional drawing techniques, this would result in 30 draw calls and a similar amount of state changes. A scene graph, on the other hand, could reorganize the primitives to render such that all backgrounds are drawn in one call, then all icons, then all the text, reducing the total amount of draw calls to only 3. (集中渲染以提升性能)Batching and state change reduction like this can greatly improve performance on some hardware.

The scene graph is closely tied to Qt Quick 2.0 and can not be used stand-alone. The scene graph is managed and rendered by the QQuickWindow class and custom Item types can add their graphical primitives into the scene graph through a call to QQuickItem::updatePaintNode().

The scene graph is a graphical representation of the Item scene, an independent structure that contains enough information to render all the items. Once it has been set up, it can be manipulated and rendered independently of the state of the items. On many platforms, the scene graph will even be rendered on a dedicated render thread while the GUI thread is preparing the next frame's state.(视图渲染在单独的线程中进行)

Qt Quick Scene Graph Structure

The scene graph is composed of a number of predefined node types, each serving a dedicated purpose. Although we refer to it as a scene graph, a more precise definition is node tree.(节点树)The tree is built from QQuickItem types in the QML scene and internally the scene is then processed by a renderer which draws the scene. The nodes themselves do not contain any active drawing code nor virtual paint()function.

Even though the node tree is mostly built internally by the existing Qt Quick QML types, it is possible for users to also add complete subtrees with their own content, including subtrees that represent 3D models.

Nodes

The most important node for users is the QSGGeometryNode. It is used to define custom graphics by defining its geometry and material. The geometry is defined using QSGGeometry and describes the shape or mesh of the graphical primitive. It can be a line, a rectangle, a polygon, many disconnected rectangles, or complex 3D mesh. The material defines how the pixels in this shape are filled.

A node can have any number of children and geometry nodes will be rendered so they appear in child-order with parents behind their children.

Note: This does not say anything about the actual rendering order in the renderer. Only the visual output is guaranteed.

The available nodes are:(有以下节点可用)

QSGNode The base class for all nodes in the scene graph QSGGeometryNode Used for all rendered content in the scene graph QSGClipNode Implements the clipping functionality in the scene graph QSGTransformNode Implements transformations in the scene graph QSGOpacityNode Used to change opacity of nodes

Custom nodes are added to the scene graph by

subclassing QQuickItem::updatePaintNode() and setting

the QQuickItem::ItemHasContents flag.

Warning: It is crucial that OpenGL operations and interaction with the scene graph happens exclusively on the render thread, primarily during the updatePaintNode() call. The rule of thumb is to only use classes with the "QSG" prefix inside the QQuickItem::updatePaintNode() function.

For more details, see the Scene Graph - Custom Geometry.

Preprocessing

Nodes have a virtual QSGNode::preprocess() function, which will be called

the scene graph is rendered. Node subclasses can set the

flag QSGNode::UsePreprocess and override theQSGNode::preprocess() function to do final preparation of their node. For example, dividing a bezier curve into

correct level of detail for the current scale factor or updating a section of a texture.

Node Ownership

Ownership of the nodes is either done explicitly by the creator or by the scene graph by setting the flag QSGNode::OwnedByParent. Assigning ownership to scene graph is often preferable as it simplifies cleanup when the scene graph lives outside the GUI thread.

Materials

The material describes how the interior of a geometry in a QSGGeometryNode is filled. It encapsulates an OpenGL shader program and provides ample flexibility in what can be achieved, though most of the Qt Quick items themselves only use very basic materials, such as solid color and texture fills.

For users who just want to apply custom shading to a QML Item type, it is possible to do this directly in QML using the ShaderEffect type.

Below is a complete list of material classes:

QSGMaterialShader Represents an OpenGL shader program in the

renderer

QSGMaterialType Used as a unique type token in combination with

QSGMaterial

QSGMaterial Encapsulates rendering state for a shader

program

QSGFlatColorMaterial Convenient way of rendering solid colored

geometry in the scene graph QSGSimpleMaterialShader Convenient way of building custom materials for

the scene graph

QSGSimpleMaterial Template generated class used to store the state

used with a QSGSimpleMateralShader

QSGOpaqueTextureMaterial Convenient way of rendering textured geometry

in the scene graph

QSGTextureMaterial Convenient way of rendering textured geometry

in the scene graph

QSGVertexColorMaterial Convenient way of rendering per-vertex colored

geometry in the scene graph

For more details, see the Scene Graph - Simple Material

Convenience Nodes

The scene graph API is very low-level and focuses on performance rather than convenience. Writing custom geometries and materials from scratch, even the most basic ones, requires a non-trivial amount of code. For this reason, the API includes a few convenience classes to make the most common custom nodes readily available.

QSGSimpleRectNode - a QSGGeometryNode subclass which defines a rectangular geometry with a solid color material.

QSGSimpleTextureNode - a QSGGeometryNode subclass which defines a rectangular geometry with a texture material.

Scene Graph and Rendering

The rendering of the scene graph happens internally in the QQuickWindow class, and there is no public API to access it. There are however, a few places in the rendering pipeline where the user can attach application code. This can be to custom scene graph content or render raw OpenGL content. The integration points are defined by the render loop.

For detailed description of how the scene graph renderer works, see Qt Quick Scene Graph Renderer.

Threaded Render Loop

On many configurations, the scene graph rendering will happen on a dedicated render thread. This is done to increase parallelism of multi-core processors and make better use of stall times such as waiting for a blocking swap buffer call.

offers significant performance improvements, but imposes certain restrictions on where and when interaction with the scene graph can happen.

The following is a simple outline of how a frame gets composed with the threaded render loop.

A change occurs in the QML scene, causing QQuickItem::update() to be called. This can be the result of for instance an animation or user input. An event is posted to the render thread to initiate a new frame.

The render thread prepares to draw a new frame and makes the OpenGL context current and initiates a blocks on the GUI thread.

While the render thread is preparing the new frame, the GUI thread callsQQuickItem::updatePolish() to do final touch-up of items before they are rendered.

GUI thread is blocked.

The QQuickWindow::beforeSynchronizing() signal is emitted. Applications can make direct connections (using Qt::DirectConnection) to this signal to do any preparation required before calls to QQuickItem::updatePaintNode(). Synchronization of the QML state into the scene graph. This is done by calling theQQuickItem::updatePaintNode() function on all items that have changed

the previous frame. This is the only time the QML items and the nodes in the scene graph interact.

GUI thread block is released.

The scene graph is rendered:

The QQuickWindow::beforeRendering() signal is emitted. Applications can make direct connections (using Qt::DirectConnection) to this signal to use OpenGL calls which will then stack visually beneath the QML scene.

Items that have specified QSGNode::UsePreprocess, will have theirQSGNode::preprocess() function invoked.

The renderer processes the nodes and calls OpenGL functions.

The QQuickWindow::afterRendering() signal is emitted. Applications can make direct connections (using Qt::DirectConnection) to this signal to use custom OpenGL calls which will then stack visually over the QML scene.

The rendered frame is swapped and QQuickWindow::frameSwapped() is emitted.

While the render thread is rendering, the GUI is free to advance animations, process events, etc.

The threaded renderer is currently used by default on Linux, Mac OS X and EGLFS based QPA platforms, but this is subject to change. It is possible to force use of the threaded renderer by

settingQML_FORCE_THREADED_RENDERER=1 in the environment.

Non-threaded Render Loop

The non-threaded render loop is currently used by default on Windows and

non-EGLFS based embedded platforms. This is mostly a precautionary measure, as not all combinations of OpenGL drivers and windowing systems have been tested.

Even when using the non-threaded render loop, you should write your code as if you are using the threaded renderer, as failing to do so will make the code

non-portable.

The following is a simplified illustration of the frame rendering sequence in the non-threaded renderer.

Mixing Scene Graph and OpenGL

The scene graph offers two methods for integrating OpenGL content: by calling OpenGL commands directly and by creating a textured node in the scene graph.(两种方式在场景图中集成OpenGL)

By connecting to the QQuickWindow::beforeRendering()

and QQuickWindow::afterRendering() signals, applications can make OpenGL calls directly into the same context as the scene graph is rendering to. As the signal names indicate, the user can then render OpenGL content either under a Qt Quick scene or over it. The benefit of integrating in this manner is that no extra framebuffer nor memory is needed to perform the rendering. The downside is that Qt Quick decides when to call the signals and this is the only time the OpenGL application is allowed to draw.

The Scene Graph - OpenGL Under QML example gives an example on how to use use these signals.

The other alternative is to create a QQuickFramebufferObject, render into it, and let it be displayed in the scene graph as a texture. The Scene Graph - Rendering FBOs example shows how this can be done. It is also possible to combine multiple rendering contexts and multiple threads to create content to be displayed in the scene graph. The Scene Graph - Rendering FBOs in a

thread examples show how this can be done.

Warning: When mixing OpenGL content with scene graph rendering, it is important the application does not leave the OpenGL context in a state with buffers bound, attributes enabled, special values in the z-buffer or stencil-buffer or similar. Doing so can result in unpredictable behavior.

Warning: The OpenGL rendering code must be thread aware, as the rendering might be happening outside the GUI thread.

Custom Items using QPainter

The QQuickItem provides a subclass, QQuickPaintedItem, which allows the users to render content usingQPainter.

Warning: Using QQuickPaintedItem uses an indirect 2D surface to render its content, either using software rasterization or using an OpenGL framebuffer object (FBO), so the rendering is a two-step operation. First rasterize the surface, then draw the surface. Using scene graph API directly is always significantly faster.

Scene Graph Backend

In addition to the public API, the scene graph has an adaptation layer which opens up the implementation to do hardware specific adaptations. This is an undocumented, internal and private plugin API, which lets hardware adaptation teams make the most of their hardware. It includes:

Custom textures; specifically the implementation of

QQuickWindow::createTextureFromImage and the internal representation of the texture used by Image and BorderImage types.

Custom renderer; the adaptation layer lets the plugin decide how the scene graph is traversed and rendered, making it possible to optimize the rendering algorithm for a specific hardware or to make use of extensions which improve performance.

Custom scene graph implementation of many of the default QML types, including its text and font rendering.

Custom animation driver; allows the animation system to hook into the low-level display vertical refresh to get smooth rendering.

Custom render loop; allows better control over how QML deals with multiple windows.

相关文档