summaryrefslogtreecommitdiffstats
path: root/src/classes/com/sun/opengl
diff options
context:
space:
mode:
Diffstat (limited to 'src/classes/com/sun/opengl')
-rw-r--r--src/classes/com/sun/opengl/impl/x11/DRIHack.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/classes/com/sun/opengl/impl/x11/DRIHack.java b/src/classes/com/sun/opengl/impl/x11/DRIHack.java
index 5f818895d..40b7d1950 100644
--- a/src/classes/com/sun/opengl/impl/x11/DRIHack.java
+++ b/src/classes/com/sun/opengl/impl/x11/DRIHack.java
@@ -87,8 +87,11 @@ public class DRIHack {
public static void begin() {
AccessController.doPrivileged(new PrivilegedAction() {
public Object run() {
+ String os = System.getProperty("os.name").toLowerCase();
+ // Do DRI hack on all Linux distributions for best robustness
driHackNeeded =
- (new File("/usr/lib/dri").exists() ||
+ (os.startsWith("linux") ||
+ new File("/usr/lib/dri").exists() ||
new File("/usr/X11R6/lib/modules/dri").exists());
return null;
}