aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qqmlprofilerservice/data/scenegraphTest.qml
blob: dd9d053296f3ab2013dfd8961aba285389fe3c31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.0

Rectangle {
    Rectangle {
        width: 10
        height: 10
        color: "blue"
    }

    Component.onCompleted: timer.start();

    Timer {
        id: timer
        interval: 100 // 100 ms, enough for at least one frame
        running: false
        onTriggered: console.log("tick")
    }
}