20 lines
529 B
C++
20 lines
529 B
C++
// Copyright (C) 2019 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#include <QGuiApplication>
|
|
#include <QtQuick/QQuickView>
|
|
|
|
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/metaltextureimport/main.qml"));
|
|
view.resize(400, 400);
|
|
view.show();
|
|
|
|
return app.exec();
|
|
}
|