diff options
author | Sven Gothel <[email protected]> | 2013-06-18 01:44:39 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-06-18 01:44:39 +0200 |
commit | 6944d3485ad005c6cd69a3122479f1fbaef26dfc (patch) | |
tree | baaf5a56527439bb5bd71448b746c82b497ac730 /src/jogl/classes/jogamp/opengl/egl/DesktopES2DynamicLibraryBundleInfo.java | |
parent | d846b04928ecfcfb319e75d7ed114d357edbeb89 (diff) |
GLDynamicLibraryBundleInfo.shallLinkGlobal(): Defaults to 'true' now, allowing to remove specialized values.
- Windows always used global
- The OpenGL library is always available by all processes system wide.
- Tested on OSX (was using local, previously).
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/egl/DesktopES2DynamicLibraryBundleInfo.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/egl/DesktopES2DynamicLibraryBundleInfo.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/jogl/classes/jogamp/opengl/egl/DesktopES2DynamicLibraryBundleInfo.java b/src/jogl/classes/jogamp/opengl/egl/DesktopES2DynamicLibraryBundleInfo.java index cddd142e9..771d16d46 100644 --- a/src/jogl/classes/jogamp/opengl/egl/DesktopES2DynamicLibraryBundleInfo.java +++ b/src/jogl/classes/jogamp/opengl/egl/DesktopES2DynamicLibraryBundleInfo.java @@ -47,16 +47,6 @@ public class DesktopES2DynamicLibraryBundleInfo extends GLDynamicLibraryBundleIn super(); } - /** - * Might be a desktop GL library, and might need to allow symbol access to subsequent libs. - * - * This respects old DRI requirements:<br> - * <pre> - * http://dri.sourceforge.net/doc/DRIuserguide.html - * </pre> - */ - public boolean shallLinkGlobal() { return true; } - public final List<String> getToolGetProcAddressFuncNameList() { List<String> res = new ArrayList<String>(); res.add("eglGetProcAddress"); |