diff options
author | Sven Gothel <[email protected]> | 2011-08-05 17:46:56 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-05 17:46:56 +0200 |
commit | 0f8a1a0d7c6ea2f712f902b57e37cbedc46b1387 (patch) | |
tree | 3a901b00cd8f0d89a7505681e370da7a74238b8b /src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java | |
parent | e04ec76678486f1b251ed4d907a924d53aafce52 (diff) |
debug verbosity ; adaption of gluegen fix of DynamicLibraryBundle
fix debug log in case no device has been initialized
use gluegen's fix of DynamicLibraryBundle.isGlueLibComplete()
- see gluegen commit 6281499e53555fd8ab26345ffce4c4d09bf57a09
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java b/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java index dc33541e6..e548ad624 100644 --- a/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java +++ b/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java @@ -32,21 +32,14 @@ import java.util.List; import java.util.ArrayList; public abstract class DesktopGLDynamicLibraryBundleInfo extends GLDynamicLibraryBundleInfo { - private static int posGlueLibGLDESKTOP; private static List/*<String>*/ glueLibNames; static { glueLibNames = new ArrayList(); glueLibNames.addAll(getGlueLibNamesPreload()); - - posGlueLibGLDESKTOP = glueLibNames.size(); glueLibNames.add("jogl_desktop"); } - public static final int getGlueLibPosGLDESKTOP() { - return posGlueLibGLDESKTOP; - } - public DesktopGLDynamicLibraryBundleInfo() { super(); } |