summaryrefslogtreecommitdiffstats
path: root/tests/manual/buffercapture-qml/main.qml
blob: 83d843117ba49ce20865da8e6374048910a629a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2017 Juan José Casafranca.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick 2.0
import Qt3D.Core 2.0
import Qt3D.Render 2.0
import QtQuick.Scene3D 2.0

Item {
    width: 128
    height: width
    Scene3D {
        anchors.fill: parent
        BufferSetterScene {
            id: scene
        }
    }
}