Change to a constructor that exists in qt 5.9

This commit is contained in:
James Rowe
2019-11-09 13:12:29 -07:00
parent 3b14bb44b9
commit db94c017bf
+2 -1
View File
@@ -310,9 +310,10 @@ std::unique_ptr<Frontend::GraphicsContext> GRenderWindow::CreateSharedContext()
GGLContext::GGLContext(QOpenGLContext* shared_context) GGLContext::GGLContext(QOpenGLContext* shared_context)
: context(new QOpenGLContext(shared_context->parent())), : context(new QOpenGLContext(shared_context->parent())),
surface(new QOffscreenSurface(nullptr, shared_context->parent())) { surface(new QOffscreenSurface(nullptr)) {
context->setShareContext(shared_context); context->setShareContext(shared_context);
context->create(); context->create();
surface->setParent(shared_context->parent());
surface->setFormat(shared_context->format()); surface->setFormat(shared_context->format());
surface->create(); surface->create();
} }