summaryrefslogtreecommitdiffstats
path: root/examples/opengl/qopenglwidget/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/opengl/qopenglwidget/main.cpp')
-rw-r--r--examples/opengl/qopenglwidget/main.cpp43
1 files changed, 0 insertions, 43 deletions
diff --git a/examples/opengl/qopenglwidget/main.cpp b/examples/opengl/qopenglwidget/main.cpp
deleted file mode 100644
index 04f1c57f08..0000000000
--- 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 <QApplication>
-#include <QMainWindow>
-#include <QColorSpace>
-#include <QSurfaceFormat>
-#include <QCommandLineParser>
-#include <QCommandLineOption>
-#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();
-}