aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/shaders/image/source.qml
blob: 04406829b334a9766ae7ded8b5d59701989a93b8 (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"
    }
}