aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/deltablue/Main2.qml
blob: 5f2f610fb634f9ea3bba65d347ad14e87275c854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQml

import "deltablue.js" as DeltaBlue

QtObject {
    property var chain: DeltaBlue.chainTest(100)
    property var projection: DeltaBlue.projectionTest(100);

    function deltaBlue() {
        chain();
        projection();
    }
}