diff options
author | Laszlo Agocs <[email protected]> | 2023-05-16 13:02:28 +0200 |
---|---|---|
committer | Laszlo Agocs <[email protected]> | 2023-05-24 12:58:27 +0200 |
commit | 413e74e9a59ccf512b0ab3da0e6a8e5ba9057319 (patch) | |
tree | f864ae252cb12f744c8e74e815a1dbb84d439e25 /tests/manual/examples/opengl/qopenglwidget/main.cpp | |
parent | a273ea7f41533d79c8e78eb0a1c68cc63121510a (diff) |
Move qopenglwidget example to manual tests
Pick-to: 6.5
Change-Id: I76e6377008484a7b17c65e3c03139a0fb2fc5c34
Reviewed-by: Laszlo Agocs <[email protected]>
Diffstat (limited to 'tests/manual/examples/opengl/qopenglwidget/main.cpp')
-rw-r--r-- | tests/manual/examples/opengl/qopenglwidget/main.cpp | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/manual/examples/opengl/qopenglwidget/main.cpp b/tests/manual/examples/opengl/qopenglwidget/main.cpp new file mode 100644 index 00000000000..04f1c57f087 --- /dev/null +++ b/tests/manual/examples/opengl/qopenglwidget/main.cpp @@ -0,0 +1,43 @@ +// 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(); +} |