aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/images/linear_smooth_1_0.qml
blob: ea542bbb5d8be55b5f24ff8c4c74c2767975aab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick 2.0

Rectangle {
    width: 320
    height: 480
    smooth: true
    Text{
        text: "scale 1.0"
        z: 1
    }
    Image{
        width: 320
        height: 480
        id: bwLinear
        source: "../shared/bw_1535x2244.jpg"
        anchors.fill: parent
        sourceSize.height: 2244
        sourceSize.width: 1535
        scale: 1.0
    }
}