Performance Guide

Since Qt Quick 2D Renderer does not use OpenGL, we lose the ability to use many optimizations that can improve rendering speed. To get the most out of Qt Quick 2D Renderer there are some guidelines that should be followed.

2D Hardware Acceleration

Qt Quick 2D Renderer is designed to use operations that can be accelerated by 2D acceleration hardware. 2D hardware acceleration uses platform plugins that take advantage of the QBlitter API (like DirectFB).

Animation

It is important to keep in mind that with Qt Quick 2 the entire window will need to be rendered every time a node in the scene graph is marked dirty. There is no partial update mechanimism that will update only the dirty regions of the window. This means that any animation that is running will be forcing a full repaint of the window, and with Qt Quick 2D Renderer this can cause a heavy CPU load.

Transforms

Transformations come with no performance penalty when rendering the scene graph with the OpenGL renderer. This is not the case with Qt Quick 2D Renderer. Translation operations do not come with performance penalties, but scaling and rotation transformations should be avoided whenever possible.

Hidden Items

Qt Quick 2D Renderer will paint all items that are not hidden explicitly with either the visibility property or with an opacity of 0. Without OpenGL there is no depth buffer to check for items completely obscured by opaque items, so everything will be painted - even if it is unnecessary.

Pixel Fill Budget

When developing an application that will be using Qt Quick 2D Renderer, it is important to keep in mind your pixel fill budget, or the the amount of pixels you can push to the screen in the time needed for your target framerate. For example, if your goal is to render your application at 60 frames per second, then you have about 16 milliseconds render to the framebuffer before needing to flush the pixels to the screen. Depending on your hardware's performance, you will only be able to handle a finite amount of pixel write operations before the 16 milliseconds expire. The interface you design should take into consideration that each added item subtracts from your pixel fill budget.

Qt Quick 2D Renderer uses the painters algorithm to paint each item in the scene back-to-front. If you have an interface that stacks many items on top of each other, keep in mind that each layer is painted completely, not just the parts that are visible. It can be very easy to waste your pixel fill budget with too many over-paints.

© 2016 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.