From f05166ef184e284ba2f6ec67c6744326d621eabf Mon Sep 17 00:00:00 2001 From: Akash Patel <17132214+acxz@users.noreply.github.com> Date: Thu, 7 Jan 2021 14:01:53 -0500 Subject: [PATCH] change nullptr to a int ptr for qt 5.15.2 bug (#527) See: https://bugreports.qt.io/browse/QTBUG-89114 Signed-off-by: acxz <17132214+acxz@users.noreply.github.com> Co-authored-by: Louise Poubel Signed-off-by: Louise Poubel --- src/gui/plugins/scene3d/Scene3D.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/plugins/scene3d/Scene3D.cc b/src/gui/plugins/scene3d/Scene3D.cc index 8854e38de6..2e51b6f440 100644 --- a/src/gui/plugins/scene3d/Scene3D.cc +++ b/src/gui/plugins/scene3d/Scene3D.cc @@ -1970,8 +1970,9 @@ TextureNode::TextureNode(QQuickWindow *_window) #if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) this->texture = this->window->createTextureFromId(0, QSize(1, 1)); #else + void * nativeLayout; this->texture = this->window->createTextureFromNativeObject( - QQuickWindow::NativeObjectTexture, nullptr, 0, QSize(1, 1), + QQuickWindow::NativeObjectTexture, &nativeLayout, 0, QSize(1, 1), QQuickWindow::TextureIsOpaque); #endif this->setTexture(this->texture);