aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/images/linear_smooth_0_3.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/scenegraph_lancelot/data/images/linear_smooth_0_3.qml')
-rw-r--r--tests/manual/scenegraph_lancelot/data/images/linear_smooth_0_3.qml22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/manual/scenegraph_lancelot/data/images/linear_smooth_0_3.qml b/tests/manual/scenegraph_lancelot/data/images/linear_smooth_0_3.qml
new file mode 100644
index 0000000000..98d5c8089b
--- /dev/null
+++ b/tests/manual/scenegraph_lancelot/data/images/linear_smooth_0_3.qml
@@ -0,0 +1,22 @@
+import QtQuick 2.0
+
+Rectangle {
+ width: 320
+ height: 480
+ smooth: true
+ Text{
+ text: "scale 0.3"
+ z: 1
+ }
+ Image{
+ width: 320
+ height: 480
+ id: bwLinear
+ source: "../shared/bw_1535x2244.jpg"
+ anchors.fill: parent
+ sourceSize.height: 2244
+ sourceSize.width: 1535
+ scale: 0.3
+ }
+}
+