21 lines
538 B
C++
21 lines
538 B
C++
// Copyright (C) 2019 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#include <QGuiApplication>
|
|
#include <QtQuick/QQuickView>
|
|
#include "metalsquircle.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QGuiApplication app(argc, argv);
|
|
|
|
QQuickWindow::setGraphicsApi(QSGRendererInterface::Metal);
|
|
|
|
QQuickView view;
|
|
view.setResizeMode(QQuickView::SizeRootObjectToView);
|
|
view.setSource(QUrl("qrc:///scenegraph/metalunderqml/main.qml"));
|
|
view.show();
|
|
|
|
return QGuiApplication::exec();
|
|
}
|