aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickpixmapcache/data/asynchronousNoCache.qml
blob: 5331be5a15416c89e46ffee101ef6a188dbd2a36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.12

Item {
    visible: true
    width: 640
    height: 480

    Image{
        asynchronous: true
        anchors.fill: parent
        fillMode: Image.Stretch
        source: "exists1.png"
        cache: false
        sourceSize.width: width/2
        sourceSize.height: height/2
    }
}