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

Item {
    width: 320
    height: 480

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

    ShaderEffect {
        anchors.fill: image
        property variant source: image
        fragmentShader: "qrc:shaders/gradient2.frag.qsb"
    }
}