Blame SOURCES/0002-cogl-gpu-info-Fix-software-acceleration-detection.patch

180070
From 03c30b76bae4c2e3f51a6689ebb7c0c60bd7b29a Mon Sep 17 00:00:00 2001
180070
From: =?UTF-8?q?Jonas=20=C3=85dahl?= <jadahl@gmail.com>
180070
Date: Tue, 9 Feb 2021 18:00:26 +0100
180070
Subject: [PATCH 2/2] cogl/gpu-info: Fix software acceleration detection
180070
180070
The string used to match mesa changed; update to fix software rendering
180070
detection.
180070
---
180070
 cogl/cogl/cogl-gpu-info.c | 2 ++
180070
 1 file changed, 2 insertions(+)
180070
180070
diff --git a/cogl/cogl/cogl-gpu-info.c b/cogl/cogl/cogl-gpu-info.c
180070
index f44319e96..c1817b3b0 100644
180070
--- a/cogl/cogl/cogl-gpu-info.c
180070
+++ b/cogl/cogl/cogl-gpu-info.c
180070
@@ -192,6 +192,8 @@ check_mesa_vendor (const CoglGpuInfoStrings *strings)
180070
     return TRUE;
180070
   else if (strcmp (strings->vendor_string, "Mesa Project") == 0)
180070
     return TRUE;
180070
+  else if (strcmp (strings->vendor_string, "Mesa/X.org") == 0)
180070
+    return TRUE;
180070
 
180070
   return FALSE;
180070
 }
180070
-- 
180070
2.29.2
180070