aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/Implementation/runtime-properties.txt17
-rw-r--r--make/scripts/make-runtime-properties.sh7
2 files changed, 14 insertions, 10 deletions
diff --git a/doc/Implementation/runtime-properties.txt b/doc/Implementation/runtime-properties.txt
index 616029ed6..0d94bec8f 100644
--- a/doc/Implementation/runtime-properties.txt
+++ b/doc/Implementation/runtime-properties.txt
@@ -4,7 +4,10 @@
jogamp.debug.JVMUtil
jogamp.debug.Lock
jogamp.debug.ReflectionUtil
-
+ jogamp.debug.NativeLibrary
+ jogamp.debug.NativeLibrary.Lookup
+ jogamp.debug.ProcAddressHelper
+ jogamp.debug.ProcAddressHelper.prefix
../doc/Implementation/runtime-properties-temp/gluegen-rt.ipd.debug.txt
@@ -16,7 +19,6 @@
sun.jnlp.applet.launcher
-
../doc/Implementation/runtime-properties-temp/jogl.debug.all.txt
----------------------------------------
jogl.debug.Animator
@@ -40,7 +42,6 @@
jogl.debug.Threading
-
../doc/Implementation/runtime-properties-temp/jogl.ipd.debug.txt
----------------------------------------
jogl.1thread
@@ -59,36 +60,37 @@
jogl.texture.notexrect
-
../doc/Implementation/runtime-properties-temp/nativewindow.debug.txt
----------------------------------------
nativewindow.debug.DefaultCapabilitiesChooser
nativewindow.debug.GraphicsConfiguration
+ nativewindow.debug. if(Debug.debugAll()) {
nativewindow.debug.JAWT
nativewindow.debug.NativeWindow
nativewindow.debug.X11Util
-
../doc/Implementation/runtime-properties-temp/nativewindow.ipd.debug.txt
----------------------------------------
java.awt.headless
+ nativewindow.debug.ToolkitLock.TraceLock
+ nativewindow.debug.X11Util.TraceDisplayLifecycle
nativewindow.ws.name
-
../doc/Implementation/runtime-properties-temp/newt.debug.txt
----------------------------------------
newt.debug.Display
newt.debug.EDT
newt.debug.MainThread
+ newt.debug.Screen
+ newt.debug.Screen.DisableScreenModeImpl
newt.debug.Window
newt.debug.Window.KeyEvent
newt.debug.Window.MouseEvent
newt.debug.Window.WindowEvent
-
../doc/Implementation/runtime-properties-temp/newt.ipd.debug.txt
----------------------------------------
newt.MainThread.force
@@ -98,4 +100,3 @@
newt.ws.swidth
-
diff --git a/make/scripts/make-runtime-properties.sh b/make/scripts/make-runtime-properties.sh
index f546a93ee..a6075dd85 100644
--- a/make/scripts/make-runtime-properties.sh
+++ b/make/scripts/make-runtime-properties.sh
@@ -18,12 +18,15 @@ function cleanup() {
sed -e 's/\".*$//g' -i $tfile
sed -e "s/^/$domain/g" -i $tfile
- sort -u $tfile > $ffile
+ sort -u $tfile >> $ffile
rm -f $tfile
}
-grep -hRI "Debug\.debug" ../../gluegen/src/java/com/jogamp | sort -u > $dest/gluegen-rt.debug.tmp1.txt
+grep -hRI "Debug\.debug" ../../gluegen/src/java/com/jogamp | sort -u > $dest/gluegen-rt.debug.tmp1.txt
+grep -hRI "System.getProperty(\"jogamp" ../../gluegen/src/java/com/jogamp | sort -u > $dest/gluegen-rt.debug.tmp2.txt
cleanup $dest/gluegen-rt.debug.tmp1.txt $dest/gluegen-rt.debug.txt jogamp.debug.
+cleanup $dest/gluegen-rt.debug.tmp2.txt $dest/gluegen-rt.debug.txt
+
grep -hRI -e "Debug\.isPropertyDefined" -e "Debug\.get" ../../gluegen/src/java/com/jogamp | sort -u > $dest/gluegen-rt.debug.ipd.tmp1.txt
cleanup $dest/gluegen-rt.debug.ipd.tmp1.txt $dest/gluegen-rt.ipd.debug.txt