aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/scenegraph/data/renderControl_rect.qml
blob: 3c24bf57fd41aae243a33c21c7b708e494a7144c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick

Rectangle {
    width: 200
    height: 200
    color: "steelblue"
    Rectangle {
        width: 150
        height: 150
        anchors.centerIn: parent
        color: "red"
    }
}