diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2022-01-13 19:29:21 +0200 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2022-01-13 21:37:23 +0200 |
commit | 2ee86feebc8888d10973a0d3dce1fdd25cd2e6d6 (patch) | |
tree | 7757e47077901a7a22556ee50d3685f9133c9d5f /clients/screenshooter.c | |
parent | 838df78fe94e5bbb653bb123b2cb0aac1db0bfb1 (diff) |
client/screenshooter: Compute the width/height for a single output
We're missing determining the buffers dimenions, so this basically adds
that. Turns out this was introduced w/ commit 'clients/screenshooter:
Fix taking screenshot on multiple outputs'. Still clueless on how this
worked in CI, unless we're using `-a' to take a screenshot on all
outputs.
Bug-AGL: SPEC-4217
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I9a849457e9ca40f0b36e7249d9142b32ca3114ab
Diffstat (limited to 'clients/screenshooter.c')
-rw-r--r-- | clients/screenshooter.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clients/screenshooter.c b/clients/screenshooter.c index 8c2b553..b68f4ad 100644 --- a/clients/screenshooter.c +++ b/clients/screenshooter.c @@ -406,6 +406,8 @@ screenshot_set_buffer_size_per_output(struct buffer_size *buff_size, buff_size->max_x = MAX(buff_size->max_x, output->offset_x + output->width); buff_size->max_y = MAX(buff_size->max_y, output->offset_y + output->height); + buff_size->width = buff_size->max_x - buff_size->min_x; + buff_size->height = buff_size->max_y - buff_size->min_y; } static void |