C

Qt Quick Ultralite Profiling QML Types

The Qt Quick Ultralite Profiling module provides types useful for displaying performance metrics on top of the application user interface.

Using the Module

To use the Qt Quick Ultralite Profiling QML types, add Profiling to the list of module files in your .qmlproject.

ModuleFiles {
    MCU.qulModules: ["Profiling"]
}

When using CMake projects, link your application to the Qul::Profiling CMake target.

target_link_libraries(app PRIVATE Qul::Profiling)

After adding the module files, add the following import statement to your .qml file:

import QtQuickUltralite.Profiling

Object Types

QulPerfOverlay

Adds screen overlay with performance metrics

Available under certain Qt licenses.
Find out more.