aboutsummaryrefslogtreecommitdiffstats
path: root/tests/baseline/scenegraph/data/shaders/live/liveonce_2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/baseline/scenegraph/data/shaders/live/liveonce_2.qml')
-rw-r--r--tests/baseline/scenegraph/data/shaders/live/liveonce_2.qml37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/baseline/scenegraph/data/shaders/live/liveonce_2.qml b/tests/baseline/scenegraph/data/shaders/live/liveonce_2.qml
new file mode 100644
index 0000000000..9bfde80098
--- /dev/null
+++ b/tests/baseline/scenegraph/data/shaders/live/liveonce_2.qml
@@ -0,0 +1,37 @@
+import QtQuick 2.0
+
+Item {
+ width: 320
+ height: 480
+
+ Text {
+ id: text
+ anchors.centerIn: parent
+ font.pixelSize: 80
+ text: "Shaderz!"
+ visible: false
+
+ Rectangle {
+ width: 50
+ height: 50
+ color: "red"
+ anchors.centerIn: parent
+ transform: Rotation { angle: 90 }
+ }
+ }
+
+ ShaderEffectSource {
+ id: source
+ sourceItem: text
+ smooth: true
+ }
+
+ ShaderEffect {
+ width: parent.width
+ height: parent.height / 2
+
+ property variant source: source
+
+ fragmentShader: "qrc:shaders/gradient3.frag.qsb"
+ }
+}