summaryrefslogtreecommitdiffstats
path: root/examples/quick
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@digia.com>2013-11-25 15:04:33 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-26 11:41:21 +0100
commit4269f9b3db3cdcb0e7bccf12161a1426cd6654b7 (patch)
tree67794dee463fb9b452790c84cc7da98437e62c05 /examples/quick
parent29449a60a45d2ddf28d0d6b8f1ba051632a47b79 (diff)
Fix the build with Qt 5.1
We are still able to build with Qt 5.1 if we disable the hardware acceleration codepaths. Change-Id: Ic748dac0a7f25bbd79f2f711a18431872cebd917 Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
Diffstat (limited to 'examples/quick')
-rw-r--r--examples/quick/quicknanobrowser/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/quick/quicknanobrowser/main.cpp b/examples/quick/quicknanobrowser/main.cpp
index 6c2f91de6..0f0278c22 100644
--- a/examples/quick/quicknanobrowser/main.cpp
+++ b/examples/quick/quicknanobrowser/main.cpp
@@ -53,12 +53,14 @@ int main(int argc, char **argv)
{
Application app(argc, argv);
+#if (QT_VERSION >= QT_VERSION_CHECK(5, 2, 0))
// This is currently needed by all QtWebEngine application using the HW accelerated QQuickWebView.
// It enables sharing between the QOpenGLContext of all QQuickWindows of the application.
// We have to do so until we expose a public API for it, or chose enable it by default in Qt 5.3.0.
QOpenGLContext shareContext;
shareContext.create();
QSGContext::setSharedOpenGLContext(&shareContext);
+#endif
ApplicationEngine appEngine;