diff --git a/qt/main.cpp b/qt/main.cpp index adefaa32c1..06f8b07e5a 100644 --- a/qt/main.cpp +++ b/qt/main.cpp @@ -203,7 +203,6 @@ int main(int argc, char * argv[]) screenshotParams->m_dpiScale = FLAGS_dpi_scale; } - QSurfaceFormat fmt; fmt.setAlphaBufferSize(8); fmt.setBlueBufferSize(8); @@ -215,20 +214,15 @@ int main(int argc, char * argv[]) fmt.setSwapInterval(1); fmt.setDepthBufferSize(16); - // This is a workaround for some systems, - // including MacOs and older Linux distros, which rely on X.org and Mesa. - // Where somehow the driver itself doesn't - // make all the otherwise supported GLSL versions available by default - // and such requests are somehow disregarded at later stages of execution. - // This setting here will be potentially overwritten and overruled anyway, - // and only needed to ensure that we have the needed GLSL compiler available - // later when we need it. - if (app.platformName() == QString("xcb") || - app.platformName() == QString("cocoa")) + // Set proper OGL version now (needed for "cocoa" or "xcb"), but have troubles with "wayland" devices. + // It will be resolved later in MapWidget::initializeGL when OGL context is available. + if (app.platformName() != QString("wayland")) { + LOG(LINFO, ("Set default OGL version to 3.2")); fmt.setProfile(QSurfaceFormat::CoreProfile); fmt.setVersion(3, 2); } + #ifdef ENABLE_OPENGL_DIAGNOSTICS fmt.setOption(QSurfaceFormat::DebugContext); #endif diff --git a/qt/qt_common/map_widget.cpp b/qt/qt_common/map_widget.cpp index 36b6747cb1..bebba3c812 100644 --- a/qt/qt_common/map_widget.cpp +++ b/qt/qt_common/map_widget.cpp @@ -377,20 +377,22 @@ void MapWidget::initializeGL() // TODO: Separate apiOpenGL3 from apiOpenGLES3, and use that for the currend shader code. m_apiOpenGLES3 = true; } + + auto fmt = context()->format(); + if (m_apiOpenGLES3) + { + fmt.setProfile(QSurfaceFormat::CoreProfile); + fmt.setVersion(3, 2); + } + else + { + fmt.setProfile(QSurfaceFormat::CompatibilityProfile); + fmt.setVersion(2, 1); + } + + QSurfaceFormat::setDefaultFormat(fmt); } #endif - auto fmt = context()->format(); - if (m_apiOpenGLES3) - { - fmt.setProfile(QSurfaceFormat::CoreProfile); - fmt.setVersion(3, 2); - } - else - { - fmt.setProfile(QSurfaceFormat::CompatibilityProfile); - fmt.setVersion(2, 1); - } - QSurfaceFormat::setDefaultFormat(fmt); m_contextFactory.reset(new QtOGLContextFactory(context()));