diff options
author | Sven Gothel <[email protected]> | 2010-11-03 07:37:31 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-03 07:37:31 +0100 |
commit | a0e9d6c8382b7275db6fae664be44db6b59671d5 (patch) | |
tree | 135b6c0924e992f19666bdf564bc64b74a4dd8f9 /make | |
parent | 701cc44d7b2c9f0b7fd977ca29951c2fb779ce2f (diff) |
NEWT Window Lifecycle / ScreenMode:
Lifecycle.reparentActionPre()/reparentActionPost() -> pauseRenderingAction()/resumeRenderingAction()
for a more generic use, ie reparenting and screen mode change.
ScreenMode change: No more visibility/fullscreen changes, no more locking,
just pause/resume animation.
X11 ScreenMode set: move from thread/wait to simple polling over time (timeout)
Diffstat (limited to 'make')
-rw-r--r-- | make/scripts/tests2.sh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/make/scripts/tests2.sh b/make/scripts/tests2.sh index 19ecb123a..9f143e60a 100644 --- a/make/scripts/tests2.sh +++ b/make/scripts/tests2.sh @@ -27,10 +27,11 @@ function jrun() { #D_ARGS="-Dnewt.debug.EDT -Djogamp.common.utils.locks.Lock.timeout=600000 -Djogl.debug.Animator -Dnewt.debug.Display -Dnewt.debug.Screen" #D_ARGS="-Dnewt.debug.EDT -Dnewt.debug.Display -Dnativewindow.debug.X11Util -Djogl.debug.GLDrawable -Djogl.debug.GLCanvas" #D_ARGS="-Dnewt.debug.EDT -Djogl.debug.GLContext" - #D_ARGS="-Dnewt.debug.Screen -Dnewt.debug.EDT" + D_ARGS="-Dnewt.debug.Screen -Dnewt.debug.EDT -Djogamp.debug.Lock" #D_ARGS="-Dnewt.debug.EDT" - D_ARGS="-Dnewt.debug.EDT -Djogl.debug=all -Dnativewindow.debug=all" + #D_ARGS="-Dnewt.debug.EDT -Djogl.debug=all -Dnativewindow.debug=all" # D_ARGS="-Djogl.debug=all" + X_ARGS="-Dsun.java2d.noddraw=true -Dsun.java2d.opengl=false" java $awtarg $X_ARGS $D_ARGS $* 2>&1 | tee -a java-run.log } @@ -42,7 +43,7 @@ function testawt() { jrun -Djava.awt.headless=false $* } -testnoawt com.jogamp.test.junit.jogl.acore.TestGLProfile01NEWT $* +#testnoawt com.jogamp.test.junit.jogl.acore.TestGLProfile01NEWT $* #testawt com.jogamp.test.junit.jogl.acore.TestGLProfile01NEWT $* #testawt com.jogamp.test.junit.jogl.awt.TestAWT01GLn $* @@ -71,8 +72,8 @@ testnoawt com.jogamp.test.junit.jogl.acore.TestGLProfile01NEWT $* #testawt com.jogamp.test.junit.newt.parenting.TestParenting02NEWT #testawt com.jogamp.test.junit.newt.TestScreenMode00NEWT -#testawt com.jogamp.test.junit.newt.TestScreenMode01NEWT -#testawt com.jogamp.test.junit.newt.TestScreenMode02NEWT +testnoawt com.jogamp.test.junit.newt.TestScreenMode01NEWT +#testnoawt com.jogamp.test.junit.newt.TestScreenMode02NEWT #testawt com.jogamp.test.junit.newt.TestGLWindows01NEWT #testawt -Djava.awt.headless=true com.jogamp.test.junit.newt.TestGLWindows01NEWT |