21 lines
376 B
QML
21 lines
376 B
QML
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.qsb"
|
|
visible: image.status == Image.Ready
|
|
}
|
|
}
|