diff options
author | Sven Gothel <[email protected]> | 2010-11-18 17:06:16 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-18 17:06:16 +0100 |
commit | 96af6c9bf2d683115996214cd895f9f9ef7ceea6 (patch) | |
tree | df27c2645d4f4db83c3def16712a5355a6cc2c2d /make/scripts/tests.sh | |
parent | 5356769e7f6ebb0ab1322ab26b2dfb9284054e0d (diff) |
JOGL/AWT: Fix ~ 2 year old regressions: Choose & Use GraphicsConfiguration for Canvas. ; Adding FSAA test.
Canvas/X11:
The Canvas GraphicsConfiguraton should be chosen before the native peer is being created.
Choosing AWT GraphicsConfiguration (all platforms):
Don't filter our capabilities with 'AWTGraphicsConfiguration.setupCapabilitiesRGBABits(capsChosen, gc)',
not necessary (see above) and it would remove ourrequired alpha channel.
Canvas display():
Don't render if drawable is not realized (yet).
Diffstat (limited to 'make/scripts/tests.sh')
-rw-r--r-- | make/scripts/tests.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/make/scripts/tests.sh b/make/scripts/tests.sh index ce08b50f5..1aa725c94 100644 --- a/make/scripts/tests.sh +++ b/make/scripts/tests.sh @@ -36,8 +36,8 @@ function jrun() { #D_ARGS="-Dnewt.debug.Screen -Dnewt.debug.EDT -Djogamp.debug.Lock" #D_ARGS="-Dnewt.debug.EDT" #D_ARGS="-Djogl.debug=all -Dnativewindow.debug=all -Dnewt.debug=all" - #D_ARGS="-Dnewt.debug=all" - X_ARGS="-Dsun.java2d.noddraw=true -Dsun.java2d.opengl=false" + #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 } @@ -98,7 +98,8 @@ function testawt() { #testawt com.jogamp.test.junit.newt.parenting.TestParenting03AWT -time 100000 #testawt com.jogamp.test.junit.newt.parenting.TestParenting03bAWT -time 100000 #testawt com.jogamp.test.junit.newt.TestCloseNewtAWT -testawt com.jogamp.test.junit.jogl.caps.Multisample +testawt com.jogamp.test.junit.jogl.caps.TestMultisampleAWT $* +#testawt com.jogamp.test.junit.jogl.caps.TestMultisampleNEWT $* #testawt $* |