QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick2 / qquickitemlayer / data / Smooth.qml
1 import QtQuick 2.0
2
3
4 Item {
5     width: 200
6     height: 100
7
8     Row {
9         id: layerRoot
10
11         width: 20
12         height: 10
13
14         Rectangle { width: 10; height: 10; color: "red" }
15         Rectangle { width: 10; height: 10; color: "blue" }
16
17         layer.enabled: true
18         layer.smooth: true
19
20         anchors.centerIn: parent
21         scale: 10
22    }
23 }