From 99d7434671e980f21506c5be760066ca29c45d93 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Sun, 24 May 2015 19:24:10 +0200 Subject: [PATCH] gsdx-ogl: disable SSO on nouveau --- plugins/GSdx/GLLoader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/GSdx/GLLoader.cpp b/plugins/GSdx/GLLoader.cpp index 9b5fa54fe..72e557c52 100644 --- a/plugins/GSdx/GLLoader.cpp +++ b/plugins/GSdx/GLLoader.cpp @@ -391,7 +391,7 @@ namespace GLLoader { nvidia_buggy_driver = true; if (strstr(vendor, "Intel")) intel_buggy_driver = true; - if (strstr(vendor, "X.Org")) // Note: it might actually catch nouveau too, but bug are likely to be the same anyway + if (strstr(vendor, "X.Org") || strstr(vendor, "nouveau")) // Note: it might actually catch nouveau too, but bug are likely to be the same anyway mesa_amd_buggy_driver = true; if (strstr(vendor, "VMware")) // Assume worst case because I don't know the real status mesa_amd_buggy_driver = intel_buggy_driver = true;