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

Rectangle {
    width: 320
    height: 480
    smooth: true
    Text{
        text: "scale 0.1"
        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.1
    }
}