aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/openglunderqml/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/openglunderqml/main.py')
-rw-r--r--examples/declarative/openglunderqml/main.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/examples/declarative/openglunderqml/main.py b/examples/declarative/openglunderqml/main.py
deleted file mode 100644
index a79d1bed8..000000000
--- a/examples/declarative/openglunderqml/main.py
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright (C) 2022 The Qt Company Ltd.
-# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import sys
-from pathlib import Path
-
-from PySide6.QtCore import QUrl
-from PySide6.QtGui import QGuiApplication
-from PySide6.QtQuick import QQuickView, QQuickWindow, QSGRendererInterface
-
-from squircle import Squircle
-
-if __name__ == "__main__":
- app = QGuiApplication(sys.argv)
-
- QQuickWindow.setGraphicsApi(QSGRendererInterface.OpenGL)
-
- view = QQuickView()
- view.setResizeMode(QQuickView.SizeRootObjectToView)
- qml_file = Path(__file__).parent / "main.qml"
- view.setSource(QUrl.fromLocalFile(qml_file))
-
- if view.status() == QQuickView.Error:
- sys.exit(-1)
- view.show()
-
- sys.exit(app.exec())