From 1cf1703dec28adf136c2636305d6b74696206d72 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Wed, 3 Nov 2021 18:58:55 +0200 Subject: [PATCH] scenes/opengl: Remove Mesa 10 check Mesa 10 is a really old driver. --- src/plugins/scenes/opengl/scene_opengl.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/plugins/scenes/opengl/scene_opengl.cpp b/src/plugins/scenes/opengl/scene_opengl.cpp index cd16470491..329030c66f 100644 --- a/src/plugins/scenes/opengl/scene_opengl.cpp +++ b/src/plugins/scenes/opengl/scene_opengl.cpp @@ -86,11 +86,6 @@ SceneOpenGL::SceneOpenGL(OpenGLBackend *backend, QObject *parent) init_ok = false; return; // error } - if (glPlatform->isMesaDriver() && glPlatform->mesaVersion() < kVersionNumber(10, 0)) { - qCCritical(KWIN_OPENGL) << "KWin requires at least Mesa 10.0 for OpenGL compositing."; - init_ok = false; - return; - } // We only support the OpenGL 2+ shader API, not GL_ARB_shader_objects if (!hasGLVersion(2, 0)) {