aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/quick.image/delegates_image_solid.qml
blob: 3f05d716b5db96fda7ac61a53b8fb01ae414dd9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.0
import QmlBench 1.0

// Test the creation of an Image with an RGB PNG
// Compare with delegates_image_alpha
CreationBenchmark {
    id: root;
    count: 50;
    staticCount: 2500;

    delegate: Image {
        x: QmlBench.getRandom() * (root.width - width)
        y: QmlBench.getRandom() * (root.height - height)
        source: "../../../../shared/solid.png"
        width: 20
        height: 20
    }
}