blob: 3a43b40d9cf992d8db8b16d5f7173c4b7447b862 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#!/bin/sh
if test -z "$XDG_CONFIG_DIRS"; then
export XDG_CONFIG_DIRS=/etc/xdg/
fi
if test -z "$XDG_RUNTIME_DIR"; then
export XDG_RUNTIME_DIR=/run/user/$UID
mkdir --parents $XDG_RUNTIME_DIR
chmod 0700 $XDG_RUNTIME_DIR
fi
# Default homescreen
HOMESCREEN=/usr/share/openivi/example/cluster/index.html
# Read configuration
HOMESCREEN_CONFIG=$XDG_CONFIG_DIRS/openivi-html5/openivi-html5.ini
if [ -e "$HOMESCREEN_CONFIG" ] ; then
HTML=`sed -n '/^homescreen=\(.*\)$/s//\1/p' < $HOMESCREEN_CONFIG`
if [ -n "$HTML" ] ; then
HOMESCREEN=$HTML
fi
fi
#the following value shall be modified for your display side
SCREEN_W=1080
SCREEN_H=1920
# Demo is configured to FullHD
QT_W=1080
QT_H=1920
# Ensure that Weston has been fully loaded
sleep 8
/usr/bin/openivi-html5 -f -u $HOMESCREEN &
# qmlscene create 2 surfaces
# 0x80000000 : for off screen buffer ?
# 0x80000001 : visible
#
SURFACE_ID_QML=0x80000001
#
# layer-add-surfaces wait till 2 surfaces are created.
#
layer-add-surfaces 1000 2
/usr/bin/LayerManagerControl set surface $SURFACE_ID_QML destination region 0 0 $SCREEN_W $SCREEN_H
/usr/bin/LayerManagerControl set surface $SURFACE_ID_QML source region 0 0 $QT_W $QT_H
/usr/bin/LayerManagerControl set layer 1000 render order $SURFACE_ID_QML
/usr/bin/LayerManagerControl set surfaces $SURFACE_ID_QML input focus keyboard
/usr/bin/LayerManagerControl set screen 0 render order 1000
|