summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2020-06-05 15:30:35 +0300
committerMarius Vlad <marius.vlad@collabora.com>2020-06-15 14:46:30 +0300
commit81be1de53fd49b7a31e5fea217e88c038e22c3f9 (patch)
tree2c8216f63fe7c7f47dbaf1e122caaba0da92a731
parentba9b65aa89951b8d1a008b162ed0199008484d4c (diff)
main: Do the installment of black surfaces for remote outputs as well
The change to enable the remote outputs later than local ones, means we need to make sure we still have a black surface installed for the remoting output. Bug-AGL: SPEC-3280 Signed-off-by: Marius Vlad <marius.vlad@collabora.com> Change-Id: I3af4ee802eab377adf9c368a800b04ba13ead8af
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 590742a..e0a9d79 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1476,11 +1476,11 @@ int main(int argc, char *argv[])
weston_compositor_flush_heads_changed(ivi.compositor);
- ivi_shell_init_black_fs(&ivi);
-
if (ivi.remoting_api)
ivi_enable_remote_outputs(&ivi);
+ ivi_shell_init_black_fs(&ivi);
+
if (create_listening_socket(display, socket_name) < 0)
goto error_compositor;