aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-01-23 02:44:35 +0100
committerSven Gothel <[email protected]>2012-01-23 02:44:35 +0100
commitfc45c16c1442984a6e6e4ad308dbf15e91fd215c (patch)
treea9c06c5052cd5318d500ca33796efd9e0c9b10f9
parent68cc9c136c5a37f6dacee24ecfe05fa712d8da4f (diff)
GLDynamicLibraryBundleInfo: Remove 'nativewindow_x11' preload lib (implicitly loaded by NativeWindowFactory)
-rwxr-xr-xmake/scripts/tests.sh4
-rw-r--r--src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java1
-rw-r--r--src/jogl/classes/jogamp/opengl/GLDynamicLibraryBundleInfo.java10
-rw-r--r--src/jogl/classes/jogamp/opengl/egl/EGLDynamicLibraryBundleInfo.java1
4 files changed, 2 insertions, 14 deletions
diff --git a/make/scripts/tests.sh b/make/scripts/tests.sh
index af8c1c204..83964341b 100755
--- a/make/scripts/tests.sh
+++ b/make/scripts/tests.sh
@@ -198,7 +198,7 @@ function testawtswt() {
#testnoawt com.jogamp.opengl.test.junit.jogl.demos.gl2.newt.TestGearsNEWT $*
#testnoawt com.jogamp.opengl.test.junit.jogl.demos.es1.newt.TestGearsES1NEWT $*
#testawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2NEWT $*
-#testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2NEWT $*
+testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2NEWT $*
#testnoawt com.jogamp.opengl.test.junit.jogl.demos.es1.newt.TestRedSquareES1NEWT $*
#testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestRedSquareES2NEWT $*
#testnoawt com.jogamp.opengl.test.junit.newt.TestWindows01NEWT $*
@@ -224,7 +224,7 @@ function testawtswt() {
#testawt jogamp.newt.awt.opengl.VersionApplet $*
#testawt javax.media.opengl.awt.GLCanvas $*
#testawt com.jogamp.opengl.test.junit.jogl.acore.TestMainVersionGLCanvasAWT $*
-testawt com.jogamp.opengl.test.junit.jogl.awt.TestBug551AWT $*
+#testawt com.jogamp.opengl.test.junit.jogl.awt.TestBug551AWT $*
#testawt com.jogamp.opengl.test.junit.jogl.awt.TestAWT01GLn $*
#testawt com.jogamp.opengl.test.junit.jogl.acore.TestSharedContextListAWT $*
#testawt com.jogamp.opengl.test.junit.jogl.acore.TestSharedContextNewtAWTBug523 $*
diff --git a/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java b/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java
index c0a75da23..b009cf714 100644
--- a/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java
+++ b/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java
@@ -36,7 +36,6 @@ public abstract class DesktopGLDynamicLibraryBundleInfo extends GLDynamicLibrary
static {
glueLibNames = new ArrayList<String>();
- glueLibNames.addAll(getGlueLibNamesPreload());
glueLibNames.add("jogl_desktop");
}
diff --git a/src/jogl/classes/jogamp/opengl/GLDynamicLibraryBundleInfo.java b/src/jogl/classes/jogamp/opengl/GLDynamicLibraryBundleInfo.java
index 433484162..f03083ac6 100644
--- a/src/jogl/classes/jogamp/opengl/GLDynamicLibraryBundleInfo.java
+++ b/src/jogl/classes/jogamp/opengl/GLDynamicLibraryBundleInfo.java
@@ -29,15 +29,8 @@
package jogamp.opengl;
import com.jogamp.common.os.DynamicLibraryBundleInfo;
-import java.util.*;
public abstract class GLDynamicLibraryBundleInfo implements DynamicLibraryBundleInfo {
- static List<String> glueLibNamesPreload;
- static {
- glueLibNamesPreload = new ArrayList<String>();
- glueLibNamesPreload.add("nativewindow_x11");
- }
-
protected GLDynamicLibraryBundleInfo() {
}
@@ -47,8 +40,5 @@ public abstract class GLDynamicLibraryBundleInfo implements DynamicLibraryBundle
/** default **/
public boolean shallLookupGlobal() { return false; }
- public static List<String> getGlueLibNamesPreload() {
- return glueLibNamesPreload;
- }
}
diff --git a/src/jogl/classes/jogamp/opengl/egl/EGLDynamicLibraryBundleInfo.java b/src/jogl/classes/jogamp/opengl/egl/EGLDynamicLibraryBundleInfo.java
index 1f9254b49..50c4950a0 100644
--- a/src/jogl/classes/jogamp/opengl/egl/EGLDynamicLibraryBundleInfo.java
+++ b/src/jogl/classes/jogamp/opengl/egl/EGLDynamicLibraryBundleInfo.java
@@ -44,7 +44,6 @@ public abstract class EGLDynamicLibraryBundleInfo extends GLDynamicLibraryBundle
static List<String> glueLibNames;
static {
glueLibNames = new ArrayList<String>();
- glueLibNames.addAll(GLDynamicLibraryBundleInfo.getGlueLibNamesPreload());
glueLibNames.add("jogl_mobile");
}