aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/shaders/image/async.qml
blob: c4cf4cc1e43800e98ba2935a5774be86e891eb5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.0

Item {
    width: 320
    height: 480

    Image {
        id: image;
        source: "face-smile.png"
        visible: false
        asynchronous: true
    }

    ShaderEffect {
        anchors.fill: image
        property variant source: image
        fragmentShader: "qrc:shaders/gradient2.frag"
        visible: image.status == Image.Ready
    }
}