diff options
author | Sven Gothel <[email protected]> | 2012-02-22 17:30:56 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-02-22 17:30:56 +0100 |
commit | 7085c11e493e5a7bbe56a602a3252f4e28c2f974 (patch) | |
tree | 62032e7c4a7ce14d3a5a3c8c2b4964dbc87a4577 /make | |
parent | a5a3d0dfa2c8c7e1e68dc4b066dda1011f471606 (diff) |
EGL Display Lifecycle Robustness Patch (impl. workaround)
Added EGLDisplayUtil helper class managing the lifecycle of the EGL display handle recursively.
This class is required, due to implementation bugs within EGL where EGL.eglTerminate(long)
does not mark the resource for deletion when still in use, bug releases them immediatly.
This fixes unit test com.jogamp.opengl.test.junit.jogl.acore.TestInitConcurrentNEWT
on Linux ARM w/ Omap4 and Tegra2.
Diffstat (limited to 'make')
-rwxr-xr-x | make/scripts/targetcommand-1.sh | 14 | ||||
-rwxr-xr-x | make/scripts/tests.sh | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/make/scripts/targetcommand-1.sh b/make/scripts/targetcommand-1.sh index a64a71a08..9f3d4b182 100755 --- a/make/scripts/targetcommand-1.sh +++ b/make/scripts/targetcommand-1.sh @@ -11,18 +11,18 @@ XTRA_FLAGS="" # OK (Panda, Omap4) # #TSTCLASS=com.jogamp.opengl.test.junit.jogl.acore.TestGLProfile01NEWT -TSTCLASS=com.jogamp.opengl.test.junit.jogl.util.TestGLReadBufferUtilTextureIOWrite01NEWT +#TSTCLASS=com.jogamp.opengl.test.junit.jogl.util.TestGLReadBufferUtilTextureIOWrite01NEWT #TSTCLASS=com.jogamp.opengl.test.junit.jogl.util.TestGLReadBufferUtilTextureIOWrite02NEWT +#TSTCLASS=com.jogamp.opengl.test.junit.graph.TestRegionRendererNEWT01 # (Tegra regressions) +#TSTCLASS=com.jogamp.opengl.test.junit.graph.TestTextRendererNEWT01 # (Tegra regressions) +#TSTCLASS=com.jogamp.opengl.test.junit.jogl.acore.TestGLDebug00NEWT +#TSTCLASS=com.jogamp.opengl.test.junit.jogl.acore.TestGLDebug01NEWT +#TSTCLASS=com.jogamp.opengl.test.junit.jogl.acore.TestGPUMemSec01NEWT +TSTCLASS=com.jogamp.opengl.test.junit.jogl.acore.TestInitConcurrentNEWT # Some Regressions (Panda, Omap4) # -#TSTCLASS=com.jogamp.opengl.test.junit.graph.TestRegionRendererNEWT01 -#TSTCLASS=com.jogamp.opengl.test.junit.graph.TestTextRendererNEWT01 -#TSTCLASS=com.jogamp.opengl.test.junit.jogl.acore.TestGLDebug00NEWT -#TSTCLASS=com.jogamp.opengl.test.junit.jogl.acore.TestGLDebug01NEWT -#TSTCLASS=com.jogamp.opengl.test.junit.jogl.acore.TestGPUMemSec01NEWT -#TSTCLASS=com.jogamp.opengl.test.junit.jogl.acore.TestInitConcurrentNEWT #TSTCLASS=com.jogamp.opengl.test.junit.jogl.acore.TestMainVersionGLWindowNEWT #TSTCLASS=com.jogamp.opengl.test.junit.jogl.acore.TestMapBuffer01NEWT #TSTCLASS=com.jogamp.opengl.test.junit.jogl.acore.TestNVSwapGroupNEWT diff --git a/make/scripts/tests.sh b/make/scripts/tests.sh index bd50f276d..fd0819e19 100755 --- a/make/scripts/tests.sh +++ b/make/scripts/tests.sh @@ -220,7 +220,7 @@ function testawtswt() { #testnoawt com.jogamp.opengl.test.junit.newt.ManualScreenMode03NEWT #testnoawt com.jogamp.opengl.test.junit.newt.TestWindowClosingProtocol02NEWT $* #testnoawt -Djava.awt.headless=true com.jogamp.opengl.test.junit.newt.TestGLWindows01NEWT -testnoawt com.jogamp.opengl.test.junit.jogl.util.TestGLReadBufferUtilTextureIOWrite01NEWT $* +#testnoawt com.jogamp.opengl.test.junit.jogl.util.TestGLReadBufferUtilTextureIOWrite01NEWT $* #testnoawt com.jogamp.opengl.test.junit.jogl.util.TestGLReadBufferUtilTextureIOWrite02NEWT $* # @@ -312,7 +312,7 @@ testnoawt com.jogamp.opengl.test.junit.jogl.util.TestGLReadBufferUtilTextureIOWr #testnoawt com.jogamp.opengl.test.junit.graph.demos.GPUUISceneNewtDemo01 $* #testnoawt com.jogamp.opengl.test.junit.graph.demos.GPUUISceneNewtDemo02 $* -#testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestGPUMemSec01NEWT $* +testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestGPUMemSec01NEWT $* #testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestMapBuffer01NEWT $* #testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestElektronenMultipliziererNEWT $* |