~saviq/ubuntu/saucy/qtdeclarative-opensource-src/add-qtquick-delegate-range

« back to all changes in this revision

Viewing changes to tests/manual/scenegraph_lancelot/data/images/linear_smooth_1_0.qml

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 14:17:19 UTC
  • Revision ID: package-import@ubuntu.com-20130205141719-qqeyml8wslpyez52
Tags: upstream-5.0.1
ImportĀ upstreamĀ versionĀ 5.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
 
 
3
Rectangle {
 
4
    width: 320
 
5
    height: 480
 
6
    smooth: true
 
7
    Text{
 
8
        text: "scale 1.0"
 
9
        z: 1
 
10
    }
 
11
    Image{
 
12
        width: 320
 
13
        height: 480
 
14
        id: bwLinear
 
15
        source: "../shared/bw_1535x2244.jpg"
 
16
        anchors.fill: parent
 
17
        sourceSize.height: 2244
 
18
        sourceSize.width: 1535
 
19
        scale: 1.0
 
20
    }
 
21
}