The nullWS (Raw) applications are replaced with the DRM ones because the Mesa-based EGL does not support nullDRM window system, the GBM(DRM) window system should be used instead.
We also replace X11 with Wayland because X11 is no longer supported and is replaced with Wayland. Signed-off-by: Eric Ruei <[email protected]> --- 3d_apps/3d_chameleon/runOGLES2ChameleonMan.sh | 8 ++++---- 3d_apps/3d_coverflow/runOGLES2Coverflow.sh | 8 ++++---- 3d_apps/3d_exampleui/runOGLES2ExampleUI.sh | 8 ++++---- 3d_apps/3d_film/runOGLESFilmTV.sh | 10 +++++----- 3d_apps/3d_lantern/runOGLES2MagicLantern.sh | 8 ++++---- 3d_apps/3d_navigation/runOGLES2Navigation.sh | 8 ++++---- 3d_apps/3d_shaders/runOGLES2Shaders.sh | 8 ++++---- 3d_apps/3d_skull/runOGLESEvilSkull.sh | 8 ++++---- 3d_apps/3d_vase/runOGLESVase.sh | 8 ++++---- 9 files changed, 37 insertions(+), 37 deletions(-) mode change 100755 => 100644 3d_apps/3d_film/runOGLESFilmTV.sh mode change 100755 => 100644 3d_apps/3d_lantern/runOGLES2MagicLantern.sh mode change 100755 => 100644 3d_apps/3d_skull/runOGLESEvilSkull.sh diff --git a/3d_apps/3d_chameleon/runOGLES2ChameleonMan.sh b/3d_apps/3d_chameleon/runOGLES2ChameleonMan.sh index 382a884..be3daa2 100644 --- a/3d_apps/3d_chameleon/runOGLES2ChameleonMan.sh +++ b/3d_apps/3d_chameleon/runOGLES2ChameleonMan.sh @@ -3,13 +3,13 @@ OGLESDIR="" OGLESAPP="OGLES2ChameleonMan" -#Check if DISPLAY is set. If so we assume we are running in X11 -#and will call the X11 version of the demos if they exist. +#Check if DISPLAY is set. If so we assume we are running in WAYLAND +#and will call the Wayland version of the demos if they exist. if [ "$DISPLAY" == "" ] then - OGLESDIR="/usr/bin/SGX/demos/Raw" + OGLESDIR="/usr/bin/SGX/demos/DRM" else - OGLESDIR="/usr/bin/SGX/demos/X11" + OGLESDIR="/usr/bin/SGX/demos/Wayland" fi if [ -e "$OGLESDIR/$OGLESAPP" ] diff --git a/3d_apps/3d_coverflow/runOGLES2Coverflow.sh b/3d_apps/3d_coverflow/runOGLES2Coverflow.sh index 32d12e9..731545b 100644 --- a/3d_apps/3d_coverflow/runOGLES2Coverflow.sh +++ b/3d_apps/3d_coverflow/runOGLES2Coverflow.sh @@ -3,13 +3,13 @@ OGLESDIR="" OGLESAPP="OGLES2Coverflow" -#Check if DISPLAY is set. If so we assume we are running in X11 -#and will call the X11 version of the demos if they exist. +#Check if DISPLAY is set. If so we assume we are running in WAYLAND +#and will call the Wayland version of the demos if they exist. if [ "$DISPLAY" == "" ] then - OGLESDIR="/usr/bin/SGX/demos/Raw" + OGLESDIR="/usr/bin/SGX/demos/DRM" else - OGLESDIR="/usr/bin/SGX/demos/X11" + OGLESDIR="/usr/bin/SGX/demos/Wayland" fi if [ -e "$OGLESDIR/$OGLESAPP" ] diff --git a/3d_apps/3d_exampleui/runOGLES2ExampleUI.sh b/3d_apps/3d_exampleui/runOGLES2ExampleUI.sh index 6f7b41c..68869eb 100644 --- a/3d_apps/3d_exampleui/runOGLES2ExampleUI.sh +++ b/3d_apps/3d_exampleui/runOGLES2ExampleUI.sh @@ -3,13 +3,13 @@ OGLESDIR="" OGLESAPP="OGLES2ExampleUI" -#Check if DISPLAY is set. If so we assume we are running in X11 -#and will call the X11 version of the demos if they exist. +#Check if DISPLAY is set. If so we assume we are running in WAYLAND +#and will call the Wayland version of the demos if they exist. if [ "$DISPLAY" == "" ] then - OGLESDIR="/usr/bin/SGX/demos/Raw" + OGLESDIR="/usr/bin/SGX/demos/DRM" else - OGLESDIR="/usr/bin/SGX/demos/X11" + OGLESDIR="/usr/bin/SGX/demos/Wayland" fi if [ -e "$OGLESDIR/$OGLESAPP" ] diff --git a/3d_apps/3d_film/runOGLESFilmTV.sh b/3d_apps/3d_film/runOGLESFilmTV.sh old mode 100755 new mode 100644 index 4cc6f9e..461eaaa --- a/3d_apps/3d_film/runOGLESFilmTV.sh +++ b/3d_apps/3d_film/runOGLESFilmTV.sh @@ -1,15 +1,15 @@ #!/bin/sh OGLESDIR="" -OGLESAPP="OGLESFilmTV" +OGLESAPP="OGLES2FilmTV" -#Check if DISPLAY is set. If so we assume we are running in X11 -#and will call the X11 version of the demos if they exist. +#Check if DISPLAY is set. If so we assume we are running in WAYLAND +#and will call the Wayland version of the demos if they exist. if [ "$DISPLAY" == "" ] then - OGLESDIR="/usr/bin/SGX/demos/Raw" + OGLESDIR="/usr/bin/SGX/demos/DRM" else - OGLESDIR="/usr/bin/SGX/demos/X11" + OGLESDIR="/usr/bin/SGX/demos/Wayland" fi if [ -e "$OGLESDIR/$OGLESAPP" ] diff --git a/3d_apps/3d_lantern/runOGLES2MagicLantern.sh b/3d_apps/3d_lantern/runOGLES2MagicLantern.sh old mode 100755 new mode 100644 index a9e02a8..d0715b9 --- a/3d_apps/3d_lantern/runOGLES2MagicLantern.sh +++ b/3d_apps/3d_lantern/runOGLES2MagicLantern.sh @@ -3,13 +3,13 @@ OGLESDIR="" OGLESAPP="OGLES2MagicLantern" -#Check if DISPLAY is set. If so we assume we are running in X11 -#and will call the X11 version of the demos if they exist. +#Check if DISPLAY is set. If so we assume we are running in WAYLAND +#and will call the Wayland version of the demos if they exist. if [ "$DISPLAY" == "" ] then - OGLESDIR="/usr/bin/SGX/demos/Raw" + OGLESDIR="/usr/bin/SGX/demos/DRM" else - OGLESDIR="/usr/bin/SGX/demos/X11" + OGLESDIR="/usr/bin/SGX/demos/Wayland" fi if [ -e "$OGLESDIR/$OGLESAPP" ] diff --git a/3d_apps/3d_navigation/runOGLES2Navigation.sh b/3d_apps/3d_navigation/runOGLES2Navigation.sh index 64b5713..6ddaa68 100644 --- a/3d_apps/3d_navigation/runOGLES2Navigation.sh +++ b/3d_apps/3d_navigation/runOGLES2Navigation.sh @@ -3,13 +3,13 @@ OGLESDIR="" OGLESAPP="OGLES2Navigation" -#Check if DISPLAY is set. If so we assume we are running in X11 -#and will call the X11 version of the demos if they exist. +#Check if DISPLAY is set. If so we assume we are running in WAYLAND +#and will call the Wayland version of the demos if they exist. if [ "$DISPLAY" == "" ] then - OGLESDIR="/usr/bin/SGX/demos/Raw" + OGLESDIR="/usr/bin/SGX/demos/DRM" else - OGLESDIR="/usr/bin/SGX/demos/X11" + OGLESDIR="/usr/bin/SGX/demos/Wayland" fi if [ -e "$OGLESDIR/$OGLESAPP" ] diff --git a/3d_apps/3d_shaders/runOGLES2Shaders.sh b/3d_apps/3d_shaders/runOGLES2Shaders.sh index f39a8a3..1a3db61 100644 --- a/3d_apps/3d_shaders/runOGLES2Shaders.sh +++ b/3d_apps/3d_shaders/runOGLES2Shaders.sh @@ -3,13 +3,13 @@ OGLESDIR="" OGLESAPP="OGLES2Shaders" -#Check if DISPLAY is set. If so we assume we are running in X11 -#and will call the X11 version of the demos if they exist. +#Check if DISPLAY is set. If so we assume we are running in WAYLAND +#and will call the Wayland version of the demos if they exist. if [ "$DISPLAY" == "" ] then - OGLESDIR="/usr/bin/SGX/demos/Raw" + OGLESDIR="/usr/bin/SGX/demos/DRM" else - OGLESDIR="/usr/bin/SGX/demos/X11" + OGLESDIR="/usr/bin/SGX/demos/Wayland" fi if [ -e "$OGLESDIR/$OGLESAPP" ] diff --git a/3d_apps/3d_skull/runOGLESEvilSkull.sh b/3d_apps/3d_skull/runOGLESEvilSkull.sh old mode 100755 new mode 100644 index 4d15b66..df7a3cf --- a/3d_apps/3d_skull/runOGLESEvilSkull.sh +++ b/3d_apps/3d_skull/runOGLESEvilSkull.sh @@ -3,13 +3,13 @@ OGLESDIR="" OGLESAPP="OGLESEvilSkull" -#Check if DISPLAY is set. If so we assume we are running in X11 -#and will call the X11 version of the demos if they exist. +#Check if DISPLAY is set. If so we assume we are running in WAYLAND +#and will call the Wayland version of the demos if they exist. if [ "$DISPLAY" == "" ] then - OGLESDIR="/usr/bin/SGX/demos/Raw" + OGLESDIR="/usr/bin/SGX/demos/DRM" else - OGLESDIR="/usr/bin/SGX/demos/X11" + OGLESDIR="/usr/bin/SGX/demos/Wayland" fi if [ -e "$OGLESDIR/$OGLESAPP" ] diff --git a/3d_apps/3d_vase/runOGLESVase.sh b/3d_apps/3d_vase/runOGLESVase.sh index 6e201fd..2fd1230 100644 --- a/3d_apps/3d_vase/runOGLESVase.sh +++ b/3d_apps/3d_vase/runOGLESVase.sh @@ -3,13 +3,13 @@ OGLESDIR="" OGLESAPP="OGLESVase" -#Check if DISPLAY is set. If so we assume we are running in X11 -#and will call the X11 version of the demos if they exist. +#Check if DISPLAY is set. If so we assume we are running in WAYLAND +#and will call the Wayland version of the demos if they exist. if [ "$DISPLAY" == "" ] then - OGLESDIR="/usr/bin/SGX/demos/Raw" + OGLESDIR="/usr/bin/SGX/demos/DRM" else - OGLESDIR="/usr/bin/SGX/demos/X11" + OGLESDIR="/usr/bin/SGX/demos/Wayland" fi if [ -e "$OGLESDIR/$OGLESAPP" ] -- 2.17.1 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
