From d858df569cc99e846294636f26c555520716c68f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=B6glund?= Date: Wed, 9 Nov 2011 18:00:26 +0100 Subject: [PATCH] kwin: Update a quirk for Gallium drivers in Mesa 7.10 The bug that prevented loose binding from working should be fixed in Mesa 7.10.1. --- libkwineffects/kwinglplatform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libkwineffects/kwinglplatform.cpp b/libkwineffects/kwinglplatform.cpp index 8d41085e29..f09dc189bb 100644 --- a/libkwineffects/kwinglplatform.cpp +++ b/libkwineffects/kwinglplatform.cpp @@ -723,7 +723,7 @@ void GLPlatform::detect() } // Loose binding is broken with Gallium drivers in Mesa 7.10 - if (isGalliumDriver() && mesaVersion() >= kVersionNumber(7, 10)) + if (isGalliumDriver() && mesaVersion() == kVersionNumber(7, 10, 0)) m_looseBinding = false; if (isSoftwareEmulation()) {