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-23 10:15:29 +0300 |
commit | 256742a9f36617fee2fe567d665f600820e4939a (patch) | |
tree | 2129e54bbdf246b653428866d511d37dd0071a26 | |
parent | 1c76c25fb8c6791625f01e9fa493f33732cc67f5 (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
(cherry picked from commit ffe9193e75c998146b7f23e50afadf7408309b0d)
-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); |