qt6-bb10/qtdeclarative/tests/baseline/scenegraph/data/shaders/source/one-source.qml

29 lines
453 B
QML

import QtQuick 2.0
Item {
width: 320
height: 480
Text {
id: text
anchors.centerIn: parent
font.pixelSize: 80
text: "Shaderz!"
visible: false
}
ShaderEffectSource {
id: source
sourceItem: text
smooth: true
}
ShaderEffect {
anchors.fill: text;
property variant source: source
fragmentShader: "qrc:shaders/gradient.frag.qsb"
}
}