From 1d9be84f04a95eb463a41d282467cfac88b396c3 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauld.mccarthy@gmail.com> Date: Sat, 20 May 2017 12:42:36 +0100 Subject: [PATCH] Make software GL renderer test more lenient (and less incorrect) - the presence of 'mesa' or 'gallium' does not imply software rendering. And llvmpipe is fast, so should be treated as hardware. --- fsl/utils/platform.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/fsl/utils/platform.py b/fsl/utils/platform.py index 3fc46fd2e..0bd260a34 100644 --- a/fsl/utils/platform.py +++ b/fsl/utils/platform.py @@ -363,9 +363,6 @@ class Platform(notifier.Notifier): # necessary. self.__glIsSoftware = any(( 'software' in value, - 'mesa' in value, - 'gallium' in value, - 'llvmpipe' in value, 'chromium' in value, )) -- GitLab