aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/images/compressed_tex.qml
blob: 3fdb54948a5eb66783f3a5955a53525bc266eb30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import QtQuick 2.14

Rectangle {
    height: 480
    width: 320
    color: "green"

    Grid {
        anchors.fill: parent
        columns: 2
        topPadding: 40
        padding: 64
        spacing: 64
        rowSpacing: 48

        Image {
            source: "../shared/o1_bc1.ktx"
        }
        Image {
            source: "../shared/o1.png"
        }
        Image {
            source: "../shared/o2_bc1.ktx"
        }
        Image {
            source: "../shared/o2.png"
        }
        Image {
            source: "../shared/t1_bc2.ktx"
        }
        Image {
            source: "../shared/t1.png"
        }
        Image {
            source: "../shared/t2_bc2.ktx"
        }
        Image {
            source: "../shared/t2.png"
        }
    }
}