From 413e74e9a59ccf512b0ab3da0e6a8e5ba9057319 Mon Sep 17 00:00:00 2001 From: Laszlo Agocs Date: Tue, 16 May 2023 13:02:28 +0200 Subject: Move qopenglwidget example to manual tests Pick-to: 6.5 Change-Id: I76e6377008484a7b17c65e3c03139a0fb2fc5c34 Reviewed-by: Laszlo Agocs --- examples/opengl/qopenglwidget/main.cpp | 43 ---------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 examples/opengl/qopenglwidget/main.cpp (limited to 'examples/opengl/qopenglwidget/main.cpp') diff --git a/examples/opengl/qopenglwidget/main.cpp b/examples/opengl/qopenglwidget/main.cpp deleted file mode 100644 index 04f1c57f087..00000000000 --- a/examples/opengl/qopenglwidget/main.cpp +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause - -#include -#include -#include -#include -#include -#include -#include "mainwindow.h" - -int main( int argc, char ** argv ) -{ - Q_INIT_RESOURCE(texture); - QApplication a( argc, argv ); - - QCoreApplication::setApplicationName("Qt QOpenGLWidget Example"); - QCoreApplication::setOrganizationName("QtProject"); - QCoreApplication::setApplicationVersion(QT_VERSION_STR); - QCommandLineParser parser; - parser.setApplicationDescription(QCoreApplication::applicationName()); - parser.addHelpOption(); - parser.addVersionOption(); - QCommandLineOption multipleSampleOption("multisample", "Multisampling"); - parser.addOption(multipleSampleOption); - QCommandLineOption srgbOption("srgb", "Use sRGB Color Space"); - parser.addOption(srgbOption); - parser.process(a); - - QSurfaceFormat format; - format.setDepthBufferSize(24); - format.setStencilBufferSize(8); - if (parser.isSet(srgbOption)) - format.setColorSpace(QColorSpace::SRgb); - if (parser.isSet(multipleSampleOption)) - format.setSamples(4); - QSurfaceFormat::setDefaultFormat(format); - - MainWindow mw; - mw.resize(1280, 720); - mw.show(); - return a.exec(); -} -- cgit v1.2.3