summaryrefslogtreecommitdiffstats
path: root/src/openglwidgets
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2020-07-28 15:31:44 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2020-07-29 20:34:15 +0200
commit3d03f4e989e0ae53569a1a2e390d71c41d91f329 (patch)
tree4504dea0fdb942778902ff823636da531ae69aaa /src/openglwidgets
parentd14cf6d3d980e9289d95b197ca46a55e9e263b22 (diff)
Register QPlatformBackingStoreOpenGLSupport when needed
Static builds can not rely on a constructor function in the QtOpenGL library, as that will be linked out unless something in the application pulls it in. Instead we export a helper function that clients that depend on OpenGL support in QPlatformBackingStore can use to bring it it. Change-Id: Ic54058bf413a476287884c78df5624b862f97695 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
Diffstat (limited to 'src/openglwidgets')
-rw-r--r--src/openglwidgets/qopenglwidget.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/openglwidgets/qopenglwidget.cpp b/src/openglwidgets/qopenglwidget.cpp
index b7abc89c0b..cb60de1fd1 100644
--- a/src/openglwidgets/qopenglwidget.cpp
+++ b/src/openglwidgets/qopenglwidget.cpp
@@ -55,6 +55,7 @@
#include <QtGui/private/qopenglcontext_p.h>
#include <QtOpenGL/private/qopenglframebufferobject_p.h>
#include <QtOpenGL/private/qopenglpaintdevice_p.h>
+#include <QtOpenGL/qpa/qplatformbackingstoreopenglsupport.h>
#include <QtWidgets/private/qwidget_p.h>
@@ -1411,6 +1412,8 @@ bool QOpenGLWidget::event(QEvent *e)
return QWidget::event(e);
}
+Q_CONSTRUCTOR_FUNCTION(qt_registerDefaultPlatformBackingStoreOpenGLSupport);
+
QT_END_NAMESPACE
#include "moc_qopenglwidget.cpp"