summaryrefslogtreecommitdiffstats
path: root/tests/manual/video-texture-qml/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/video-texture-qml/main.cpp')
-rw-r--r--tests/manual/video-texture-qml/main.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/manual/video-texture-qml/main.cpp b/tests/manual/video-texture-qml/main.cpp
deleted file mode 100644
index e136f01ea..000000000
--- a/tests/manual/video-texture-qml/main.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
-
-#include <Qt3DQuick/QQmlAspectEngine>
-#include <QGuiApplication>
-#include <QQmlEngine>
-#include <QQmlContext>
-#include <Qt3DQuickExtras/Qt3DQuickWindow>
-
-int main(int argc, char* argv[])
-{
- QGuiApplication app(argc, argv);
- Qt3DExtras::Quick::Qt3DQuickWindow view;
-
- view.engine()->qmlEngine()->rootContext()->setContextProperty("_window", &view);
- view.setSource(QUrl("qrc:/main.qml"));
- view.show();
-
- return app.exec();
-}