mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 10:16:19 +02:00
31 lines
No EOL
686 B
QML
31 lines
No EOL
686 B
QML
//
|
|
// EngineProfiler.qml
|
|
//
|
|
// Created by Sam Gateau on 06/07/2018
|
|
// Copyright 2016 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 "qrc:///qml/styles-uit"
|
|
import "qrc:///qml/controls-uit" as HifiControls
|
|
|
|
import "../lib/jet/qml" as Jet
|
|
|
|
Item {
|
|
HifiConstants { id: hifi;}
|
|
id: root;
|
|
anchors.fill: parent
|
|
|
|
property var rootConfig: Render.getConfig("")
|
|
|
|
|
|
Jet.TaskTimeFrameView {
|
|
rootConfig: root.rootConfig
|
|
anchors.fill: root
|
|
}
|
|
} |