2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QMainWindow>
|
2019-09-09 14:11:48 +00:00
|
|
|
#include <QScreen>
|
2022-01-24 15:38:02 +00:00
|
|
|
#include <QShortcut>
|
2014-08-02 17:42:15 +00:00
|
|
|
#include <QSurfaceFormat>
|
2014-10-08 14:57:07 +00:00
|
|
|
#include <QOpenGLContext>
|
2022-01-24 15:38:02 +00:00
|
|
|
#include <QOpenGLFunctions>
|
2017-08-29 14:21:17 +00:00
|
|
|
#include <QCommandLineParser>
|
|
|
|
#include <QCommandLineOption>
|
2011-04-27 10:05:43 +00:00
|
|
|
#include "mainwindow.h"
|
2014-06-20 09:58:34 +00:00
|
|
|
#include "glwidget.h"
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2019-05-14 18:42:01 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2014-10-08 14:57:07 +00:00
|
|
|
static QString getGlString(QOpenGLFunctions *functions, GLenum name)
|
|
|
|
{
|
|
|
|
if (const GLubyte *p = functions->glGetString(name))
|
|
|
|
return QString::fromLatin1(reinterpret_cast<const char *>(p));
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
int main( int argc, char ** argv )
|
|
|
|
{
|
|
|
|
QApplication a( argc, argv );
|
2014-06-20 09:58:34 +00:00
|
|
|
|
2017-08-29 14:21:17 +00:00
|
|
|
QCoreApplication::setApplicationName("Qt Threaded QOpenGLWidget Example");
|
|
|
|
QCoreApplication::setOrganizationName("QtProject");
|
|
|
|
QCoreApplication::setApplicationVersion(QT_VERSION_STR);
|
|
|
|
QCommandLineParser parser;
|
|
|
|
parser.setApplicationDescription(QCoreApplication::applicationName());
|
|
|
|
parser.addHelpOption();
|
|
|
|
parser.addVersionOption();
|
|
|
|
QCommandLineOption singleOption("single", "Single thread");
|
|
|
|
parser.addOption(singleOption);
|
|
|
|
parser.process(a);
|
|
|
|
|
2014-08-02 17:42:15 +00:00
|
|
|
QSurfaceFormat format;
|
|
|
|
format.setDepthBufferSize(16);
|
|
|
|
QSurfaceFormat::setDefaultFormat(format);
|
|
|
|
|
2014-06-20 09:58:34 +00:00
|
|
|
// Two top-level windows with two QOpenGLWidget children in each.
|
|
|
|
// The rendering for the four QOpenGLWidgets happens on four separate threads.
|
|
|
|
|
2014-10-08 14:57:07 +00:00
|
|
|
GLWidget topLevelGlWidget;
|
2019-09-09 14:11:48 +00:00
|
|
|
QPoint pos = topLevelGlWidget.screen()->availableGeometry().topLeft() + QPoint(200, 200);
|
2014-10-08 14:57:07 +00:00
|
|
|
topLevelGlWidget.setWindowTitle(QStringLiteral("Threaded QOpenGLWidget example top level"));
|
|
|
|
topLevelGlWidget.resize(200, 200);
|
|
|
|
topLevelGlWidget.move(pos);
|
|
|
|
topLevelGlWidget.show();
|
2022-01-24 15:38:02 +00:00
|
|
|
auto *closeShortcut = new QShortcut(Qt::CTRL | Qt::Key_Q, &a, QApplication::closeAllWindows);
|
|
|
|
closeShortcut->setContext(Qt::ApplicationShortcut);
|
2014-10-08 14:57:07 +00:00
|
|
|
|
|
|
|
const QString glInfo = getGlString(topLevelGlWidget.context()->functions(), GL_VENDOR)
|
|
|
|
+ QLatin1Char('/') + getGlString(topLevelGlWidget.context()->functions(), GL_RENDERER);
|
|
|
|
|
|
|
|
const bool supportsThreading = !glInfo.contains(QLatin1String("nouveau"), Qt::CaseInsensitive)
|
2014-10-23 11:42:17 +00:00
|
|
|
&& !glInfo.contains(QLatin1String("ANGLE"), Qt::CaseInsensitive)
|
|
|
|
&& !glInfo.contains(QLatin1String("llvmpipe"), Qt::CaseInsensitive);
|
2014-10-08 14:57:07 +00:00
|
|
|
|
|
|
|
const QString toolTip = supportsThreading ? glInfo : glInfo + QStringLiteral("\ndoes not support threaded OpenGL.");
|
|
|
|
topLevelGlWidget.setToolTip(toolTip);
|
|
|
|
|
2019-05-14 18:42:01 +00:00
|
|
|
std::unique_ptr<MainWindow> mw1;
|
|
|
|
std::unique_ptr<MainWindow> mw2;
|
2017-08-29 14:21:17 +00:00
|
|
|
if (!parser.isSet(singleOption)) {
|
2014-10-23 11:42:17 +00:00
|
|
|
if (supportsThreading) {
|
|
|
|
pos += QPoint(100, 100);
|
|
|
|
mw1.reset(new MainWindow);
|
|
|
|
mw1->setToolTip(toolTip);
|
|
|
|
mw1->move(pos);
|
|
|
|
mw1->setWindowTitle(QStringLiteral("Threaded QOpenGLWidget example #1"));
|
|
|
|
mw1->show();
|
|
|
|
pos += QPoint(100, 100);
|
|
|
|
mw2.reset(new MainWindow);
|
|
|
|
mw2->setToolTip(toolTip);
|
|
|
|
mw2->move(pos);
|
|
|
|
mw2->setWindowTitle(QStringLiteral("Threaded QOpenGLWidget example #2"));
|
|
|
|
mw2->show();
|
|
|
|
} else {
|
|
|
|
qWarning() << toolTip;
|
|
|
|
}
|
2014-06-20 09:58:34 +00:00
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
return a.exec();
|
|
|
|
}
|