aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/shaders/tree/hiddentree_1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/scenegraph_lancelot/data/shaders/tree/hiddentree_1.qml')
-rw-r--r--tests/manual/scenegraph_lancelot/data/shaders/tree/hiddentree_1.qml32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/manual/scenegraph_lancelot/data/shaders/tree/hiddentree_1.qml b/tests/manual/scenegraph_lancelot/data/shaders/tree/hiddentree_1.qml
new file mode 100644
index 0000000000..ad4cce9546
--- /dev/null
+++ b/tests/manual/scenegraph_lancelot/data/shaders/tree/hiddentree_1.qml
@@ -0,0 +1,32 @@
+import QtQuick 2.0
+
+Item {
+ width: 320
+ height: 480
+
+ Rectangle {
+ visible: false
+ Item {
+ Text {
+ id: text
+ font.pixelSize: 80
+ text: "Shaderz!"
+ color: "black"
+ Rectangle {
+ width: 50
+ height: 50
+ color: "red"
+ anchors.centerIn: parent
+ transform: Rotation { angle: 45 }
+ }
+ }
+ }
+ }
+
+ ShaderEffectSource {
+ width: text.width
+ height: text.height
+ anchors.centerIn: parent
+ sourceItem: text
+ }
+}