mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 21:15:07 +02:00
30 lines
No EOL
676 B
QML
30 lines
No EOL
676 B
QML
//
|
|
// engineList.qml
|
|
//
|
|
// Created by Sam Gateau on 12/3/2018
|
|
// Copyright 2018 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or https://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
import QtQuick 2.7
|
|
import QtQuick.Controls 1.4
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import stylesUit 1.0
|
|
import controlsUit 1.0 as HifiControls
|
|
|
|
import "../lib/jet/qml" as Jet
|
|
|
|
Item {
|
|
HifiConstants { id: hifi;}
|
|
id: render;
|
|
anchors.fill: parent
|
|
|
|
property var mainViewTask: Render.getConfig("RenderMainView")
|
|
|
|
Jet.TaskList {
|
|
rootConfig: Render.getConfig("")
|
|
anchors.fill: render
|
|
}
|
|
} |