diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2024-08-17 20:02:43 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2024-08-21 11:45:29 +0300 |
commit | ffe9193e75c998146b7f23e50afadf7408309b0d (patch) | |
tree | a86d7ca3c89a94c09770a07e0140c54aea57e61b | |
parent | c1610846f53a0d722da97ce33ae02ad89c6b0194 (diff) |
compositor: Align to the right the remoting output
This was an oversight when we migrated to libweston 13, so align the
other right to avoid overlapping with the other outputs. This should
allow remoting to work, assuming that host can actually grab the frames.
Bug-AGL: SPEC-5230
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I0de113804a5888dba38869e5afb857a162389de2
-rw-r--r-- | src/compositor.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compositor.c b/src/compositor.c index 078157a..58037f9 100644 --- a/src/compositor.c +++ b/src/compositor.c @@ -949,6 +949,8 @@ remote_output_init(struct ivi_output *ivi_output, goto err; } + weston_output_lazy_align(ivi_output->output); + if ((ret = weston_output_enable(ivi_output->output)) < 0) { weston_log("Enabling remoted output \"%s\" failed.\n", output_name); |