diff options
author | Sven Gothel <[email protected]> | 2011-08-06 10:07:05 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-06 10:07:05 +0200 |
commit | 8c1007f28396956d5ef83fbbbea78e910c1e53bd (patch) | |
tree | 1ad27a2c5bd61c3872565a316e557a2b8e0b1760 /src/jogl/classes/jogamp/opengl/egl/EGLDynamicLibraryBundleInfo.java | |
parent | d63ca3ad5d2acf20a8ff8f27778ef084b305260c (diff) |
EGL/Android: Favor driver's EGL/ES native library - Using Android's fails
FIXME: find proper solution, instead of using hardcoded and non-std lib names
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/egl/EGLDynamicLibraryBundleInfo.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/egl/EGLDynamicLibraryBundleInfo.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/jogl/classes/jogamp/opengl/egl/EGLDynamicLibraryBundleInfo.java b/src/jogl/classes/jogamp/opengl/egl/EGLDynamicLibraryBundleInfo.java index 1d2d20f61..ff838dd0b 100644 --- a/src/jogl/classes/jogamp/opengl/egl/EGLDynamicLibraryBundleInfo.java +++ b/src/jogl/classes/jogamp/opengl/egl/EGLDynamicLibraryBundleInfo.java @@ -30,6 +30,8 @@ package jogamp.opengl.egl; import com.jogamp.common.os.DynamicLookupHelper; import com.jogamp.common.os.NativeLibrary; +import com.jogamp.common.os.Platform; + import java.util.*; import javax.media.nativewindow.*; @@ -71,8 +73,14 @@ public abstract class EGLDynamicLibraryBundleInfo extends GLDynamicLibraryBundle protected List/*<String>*/ getEGLLibNamesList() { List/*<String>*/ eglLibNames = new ArrayList(); + if(Platform.getOSType() == Platform.OSType.ANDROID) { + // using the android-EGL fails + eglLibNames.add("/system/lib/egl/libEGL_POWERVR_SGX530_125.so"); + } + // try default generic names first eglLibNames.add("EGL"); + // for windows distributions using the 'unlike' lib prefix, // where our tool does not add it. eglLibNames.add("libEGL"); |