summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/shared/qt_webengine_quicktest.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/shared/qt_webengine_quicktest.h')
-rw-r--r--tests/auto/quick/shared/qt_webengine_quicktest.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/quick/shared/qt_webengine_quicktest.h b/tests/auto/quick/shared/qt_webengine_quicktest.h
index d3ce305fd..80b7ca7a1 100644
--- a/tests/auto/quick/shared/qt_webengine_quicktest.h
+++ b/tests/auto/quick/shared/qt_webengine_quicktest.h
@@ -50,6 +50,9 @@
#include <QtGui/QGuiApplication>
#endif
+#include "qopenglcontext.h"
+#include <QtQuick/private/qsgcontext_p.h>
+
QT_BEGIN_NAMESPACE
#ifndef QUICK_TEST_SOURCE_DIR
@@ -69,6 +72,9 @@ QT_BEGIN_NAMESPACE
qputenv("QTWEBENGINEPROCESS_PATH", QWP_PATH); \
if (!QCoreApplication::instance()) \
app = new Application(argc, argv); \
+ QOpenGLContext shareContext; \
+ shareContext.create(); \
+ QSGContext::setSharedOpenGLContext(&shareContext); \
int i = quick_test_main(argc, argv, #name, QUICK_TEST_SOURCE_DIR); \
delete app; \
return i; \