To start Weston-simple-egl with ivi-shell and ivi-controller

  1. Execute the command:
    weston-simple-egl -width 1920 -height 1080 -surface 10 &
  2. Manually configuring the client surface:
    LayerManagerControl set surface 10 source region 0 0 1920 1080
    LayerManagerControl set surface 10 destination region 0 0 1920 1080
    LayerManagerControl set surface 10 visibility 1

    Nothing appears on the screen because the application surface is not linked to a layer.

  3. Create a layer and attach the client surface to it:
    LayerManagerControl create layer 1000 1920 1080
    LayerManagerControl set layer 1000 render order 10
    LayerManagerControl set layer 1000 visibility 1
  4. Link your layer to a screen:
    LayerManagerControl set screen 0 render order 1000