Commit b53896d1 authored by Michael Brüning's avatar Michael Brüning
Browse files

Detect the scenegraph software backend when it was set programatically


Since 5.8, it is possible to set the Qt Quick scenegraph backend using
QQuickWindow::setSceneGraph backend. However, this is not detectable by
WebEngine's implementation as it relied on environment variables or
command line options being specified.

Task-number: QTBUG-60232
Change-Id: I53291510887ec5c75a15d5927a84e91fb5859e26
Reviewed-by: default avatarKai Koehne <kai.koehne@qt.io>
Showing with 3 additions and 0 deletions
......@@ -91,6 +91,7 @@
#ifndef QT_NO_OPENGL
# include <QOpenGLContext>
#endif
#include <QQuickWindow>
#include <QStringList>
#include <QSurfaceFormat>
#include <QVector>
......@@ -157,6 +158,8 @@ bool usingQtQuick2DRenderer()
}
}
if (device.isEmpty())
device = QQuickWindow::sceneGraphBackend();
if (device.isEmpty())
device = QString::fromLocal8Bit(qgetenv("QT_QUICK_BACKEND"));
if (device.isEmpty())
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment