diff options
author | Sven Gothel <[email protected]> | 2019-11-22 17:16:55 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-11-22 17:16:55 +0100 |
commit | 30826d978258c16b06cdab34e5a4265406545c3f (patch) | |
tree | 44cf076460a6a947754d5b923ece87e6c296f0db /src/jogl/classes/jogamp/opengl/egl | |
parent | 4b9754d210b22f32e5f083d3524da8f3d886bfb7 (diff) |
Bug 1156: EGL-GBM: Fix NativeWindowFactory native-window-type query according to Bug 1156
- Special files like '/dev/dri/card0' can't be tested via isFile(), use exists()
Order for GNU/Linux (and other unices) IMHO is
1) Display Server (Vendor neutral)
1.1) running X11 display server (DISPLAY check enough?)
1.2) running WAYLAND display server (WAYLAND_DISPLAY check enough?)
2) Console Mode Vendor Neutral
2.1) GBM (how to check?)
3) Console Mode Vendor Specific
3.1) VCIV (how to check)
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/egl')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/egl/EGLES2DynamicLibraryBundleInfo.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/opengl/egl/EGLES2DynamicLibraryBundleInfo.java b/src/jogl/classes/jogamp/opengl/egl/EGLES2DynamicLibraryBundleInfo.java index 038194d58..866e57ad7 100644 --- a/src/jogl/classes/jogamp/opengl/egl/EGLES2DynamicLibraryBundleInfo.java +++ b/src/jogl/classes/jogamp/opengl/egl/EGLES2DynamicLibraryBundleInfo.java @@ -55,7 +55,7 @@ public final class EGLES2DynamicLibraryBundleInfo extends EGLDynamicLibraryBundl * Prefer libGLESv2.so over libGLESv2.so.2 for proprietary * Broadcom graphics when the VC4 DRM Xorg driver isn't present */ - final boolean bcm_vc_iv_quirk = BcmVCArtifacts.guessVCIVUsed(); + final boolean bcm_vc_iv_quirk = BcmVCArtifacts.guessVCIVUsed(false); // ES3: This is the default lib name, according to the spec libsGL.add("libGLESv3.so.3"); |