2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2019 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2019-08-26 09:45:54 +00:00
|
|
|
|
|
|
|
#include <QGuiApplication>
|
|
|
|
#include <QtQuick/QQuickView>
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QGuiApplication app(argc, argv);
|
|
|
|
|
|
|
|
// This example needs Vulkan. It will not run otherwise.
|
2022-02-09 14:20:57 +00:00
|
|
|
QQuickWindow::setGraphicsApi(QSGRendererInterface::Vulkan);
|
2019-08-26 09:45:54 +00:00
|
|
|
|
|
|
|
QQuickView view;
|
|
|
|
view.setResizeMode(QQuickView::SizeRootObjectToView);
|
|
|
|
view.setSource(QUrl("qrc:///scenegraph/vulkanunderqml/main.qml"));
|
|
|
|
view.show();
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|