diff options
author | Sven Gothel <[email protected]> | 2011-08-07 07:51:08 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-07 07:51:08 +0200 |
commit | 8f604ad1aa27455b2fdadf100c6df3e02727473d (patch) | |
tree | 6cce50755522c4da11755b59532a682e0974eb2d | |
parent | 4808e9e7e9f2c6991bc25db86f2e80e42ee163c8 (diff) |
incr. debug output (tests)
-rw-r--r-- | make/scripts/eglestest-java-linux.sh | 2 | ||||
-rw-r--r-- | src/newt/classes/jogamp/newt/driver/android/NEWTSurfaceView.java | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/make/scripts/eglestest-java-linux.sh b/make/scripts/eglestest-java-linux.sh index 521a5fb4c..3151d9d1e 100644 --- a/make/scripts/eglestest-java-linux.sh +++ b/make/scripts/eglestest-java-linux.sh @@ -37,6 +37,8 @@ java \ -Djava.library.path=../../gluegen/make/$BUILD_DIR/obj:$BUILD_DIR/lib \ -Djava.class.path=$CP_BASE:$CP_JOGL_MOBILE \ -Djogamp.debug.NativeLibrary=true \ + -Dnativewindow.debug=all \ + -Djogl.debug=all \ $TSTCLASS $* \ 2>&1 | tee $LOGFILE \ diff --git a/src/newt/classes/jogamp/newt/driver/android/NEWTSurfaceView.java b/src/newt/classes/jogamp/newt/driver/android/NEWTSurfaceView.java index 4cba7e77e..cdbe40471 100644 --- a/src/newt/classes/jogamp/newt/driver/android/NEWTSurfaceView.java +++ b/src/newt/classes/jogamp/newt/driver/android/NEWTSurfaceView.java @@ -44,6 +44,7 @@ public class NEWTSurfaceView extends SurfaceView implements Callback2 { public NEWTSurfaceView(Context context) { super(context); + System.setProperty("nativewindow.debug", "all"); System.setProperty("jogl.debug", "all"); System.setProperty("jogamp.debug.JNILibLoader", "true"); System.setProperty("jogamp.debug.NativeLibrary", "true"); |