diff options
author | Sven Gothel <[email protected]> | 2019-11-22 17:06:24 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-11-22 17:06:24 +0100 |
commit | 39169a80b7b1f604c4da2456c9f4852d2c8c0600 (patch) | |
tree | 7a5c010c89f0a67c8c466a892b9eb96e988b082b | |
parent | 92497251d85a7e7cf39230a014955dbbda0a49ea (diff) |
Bug 1156: GBM: FIXME: Hard link gbm and drm (temporary)
-rw-r--r-- | make/build-newt.xml | 7 | ||||
-rw-r--r-- | make/scripts/tests.sh | 13 |
2 files changed, 10 insertions, 10 deletions
diff --git a/make/build-newt.xml b/make/build-newt.xml index c3fc22afd..ac791add2 100644 --- a/make/build-newt.xml +++ b/make/build-newt.xml @@ -531,11 +531,6 @@ <syslibset libs="drm"/> </linker> - <linker id="linker.cfg.linux.newt.bcm_egl" extends="linker.cfg.linux"> - <syslibset libs="EGL"/> - <syslibset libs="GLES_CM"/> - </linker> - <linker id="linker.cfg.linux.newt.x11" extends="linker.cfg.linux"> <syslibset libs="X11"/> <syslibset libs="Xrandr"/> @@ -561,6 +556,8 @@ <syslibset libs="Xi"/> <!--syslibset libs="xcb" /--> <!--syslibset libs="X11-xcb" /--> + <syslibset libs="gbm"/> <!-- FIXME --> + <syslibset libs="drm"/> <!-- FIXME --> </linker> <linker id="linker.cfg.linux.armv6.newt.x11" extends="linker.cfg.linux.armv6"> diff --git a/make/scripts/tests.sh b/make/scripts/tests.sh index 0355ceae8..3d8ac7738 100644 --- a/make/scripts/tests.sh +++ b/make/scripts/tests.sh @@ -91,7 +91,9 @@ echo LIBGL_DEBUG: $LIBGL_DEBUG 2>&1 | tee -a java-run.log echo LIBGL_ALWAYS_INDIRECT: $LIBGL_ALWAYS_INDIRECT 2>&1 | tee -a java-run.log echo LIBGL_ALWAYS_SOFTWARE: $LIBGL_ALWAYS_SOFTWARE 2>&1 | tee -a java-run.log echo SWT_CLASSPATH: $SWT_CLASSPATH 2>&1 | tee -a java-run.log -echo MacOsX $MOSX +echo MacOsX $MOSX 2>&1 | tee -a java-run.log +echo DISPLAY $DISPLAY 2>&1 | tee -a java-run.log +echo WAYLAND_DISPLAY $WAYLAND_DISPLAY 2>&1 | tee -a java-run.log function jrun() { awton=$1 @@ -114,7 +116,7 @@ function jrun() { #D_ARGS="-Dnativewindow.debug=all" #D_ARGS="-Djogl.debug=all" #D_ARGS="-Djogl.debug=all -Dnewt.debug=all -Djogl.debug.DebugGL" - D_ARGS="-Dnewt.debug=all" + #D_ARGS="-Dnewt.debug=all" #D_ARGS="-Djogl.debug=all -Dnewt.debug=all" #D_ARGS="-Djogl.debug=all -Dnativewindow.debug=all" #D_ARGS="-Djogamp.debug=all -Dnativewindow.debug=all -Djogl.debug=all -Dnewt.debug=all" @@ -365,7 +367,8 @@ function jrun() { export USE_CLASSPATH=$JOGAMP_ALL_NOAWT_CLASSPATH #export USE_CLASSPATH=$JOGAMP_MOBILE_CLASSPATH #export USE_CLASSPATH=.:$GLUEGEN_JAR:$JOGL_BUILDDIR/jar/atomic/jogl.jar:$JOGL_BUILDDIR/jar/atomic/jogl-gldesktop.jar:$JOGL_BUILDDIR/jar/atomic/jogl-os-x11.jar:$JOGL_BUILDDIR/jar/atomic/jogl-util.jar:$JOGL_BUILDDIR/jar/atomic/nativewindow.jar:$JOGL_BUILDDIR/jar/atomic/nativewindow-os-x11.jar:$JOGL_BUILDDIR/jar/atomic/newt.jar:$JOGL_BUILDDIR/jar/atomic/newt-driver-x11.jar:$JOGL_BUILDDIR/jar/atomic/newt-ogl.jar:$JOGL_BUILDDIR/jar/jogl-test.jar:$JUNIT_JAR:$ANT_JARS - X_ARGS="-Djava.awt.headless=true $X_ARGS" + #X_ARGS="-Djava.awt.headless=true $X_ARGS" + X_ARGS="-Djava.awt.headless=false $X_ARGS" fi if [ $USE_BUILDDIR -eq 1 ] ; then @@ -448,7 +451,7 @@ function testawtswt() { #testnoawt com.jogamp.newt.opengl.GLWindow $* #testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestGLVersionParsing00NEWT $* -testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestMainVersionGLWindowNEWT $* +#testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestMainVersionGLWindowNEWT $* #testawt com.jogamp.opengl.test.junit.jogl.acore.TestMainVersionGLCanvasAWT $* #testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestGLProfile00NEWT $* #testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestGLProfile01NEWT $* @@ -466,7 +469,7 @@ testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestMainVersionGLWindowNEWT $* # # HiDPI # -#testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2NEWT $* +testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2NEWT $* #testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2SimpleNEWT $* #testawt com.jogamp.opengl.test.junit.jogl.demos.es2.awt.TestGearsES2GLJPanelAWT $* #testawt com.jogamp.opengl.test.junit.jogl.demos.es2.awt.TestGearsES2AWT $* |