summaryrefslogtreecommitdiffstats
path: root/src/core/content_browser_client_qt.cpp
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-07-01 18:24:39 +0200
committerJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-08-01 15:32:41 +0200
commitf5e77e9481ed32564d6692f317dbc387b5b464ce (patch)
treed42d5055bc063a83a27aae04633aab5c76307ce5 /src/core/content_browser_client_qt.cpp
parent7696dcdb51b30e1a95d8a9b604aeaf58be9f50cf (diff)
Drop 5.2 support
We actually already depend on dev (5.4) in other areas. Change-Id: Iab297a51ab06209a96f11f97c74463d38203eda8 Reviewed-by: Andras Becsi <andras.becsi@digia.com>
Diffstat (limited to 'src/core/content_browser_client_qt.cpp')
-rw-r--r--src/core/content_browser_client_qt.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/content_browser_client_qt.cpp b/src/core/content_browser_client_qt.cpp
index c70b2993e..641d05011 100644
--- a/src/core/content_browser_client_qt.cpp
+++ b/src/core/content_browser_client_qt.cpp
@@ -63,7 +63,6 @@
#include <QGuiApplication>
#include <QtGui/private/qopenglcontext_p.h>
-#include <QtQuick/private/qsgcontext_p.h>
#include <qpa/qplatformnativeinterface.h>
namespace {
@@ -262,11 +261,7 @@ private:
void ShareGroupQtQuick::AboutToAddFirstContext()
{
// This currently has to be setup by ::main in all applications using QQuickWebEngineView with delegated rendering.
-#if (QT_VERSION < QT_VERSION_CHECK(5, 3, 0))
- QOpenGLContext *shareContext = QSGContext::sharedOpenGLContext();
-#else
QOpenGLContext *shareContext = QOpenGLContextPrivate::globalShareContext();
-#endif
if (!shareContext) {
qFatal("QWebEngine: OpenGL resource sharing is not set up in QtQuick. Please make sure to call QWebEngine::initialize() or QWebEngineWidgets::initialize() in your main() function.");
}