From: Leandro Ribeiro Date: Wed, 27 Nov 2019 16:02:24 +0000 (-0300) Subject: screenshooter: get previous_damage from data argument instead of weston_output X-Git-Tag: upstream/9.0.0~228 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e28e8312117889ba37e3cb9d3b8979fe2e9912ac;p=platform%2Fupstream%2Fweston.git screenshooter: get previous_damage from data argument instead of weston_output Instead of getting previous_damage from the weston_output struct, get it from the frame_signal data argument. This will make possible to remove previous_damage from weston_output after we decide what to do with output->previous_damage usage in DRM backend. Signed-off-by: Leandro Ribeiro --- diff --git a/libweston/screenshooter.c b/libweston/screenshooter.c index 3b161c61..4ea519bd 100644 --- a/libweston/screenshooter.c +++ b/libweston/screenshooter.c @@ -287,8 +287,7 @@ weston_recorder_frame_notify(struct wl_listener *listener, void *data) pixman_region32_init(&damage); pixman_region32_init(&transformed_damage); - pixman_region32_intersect(&damage, &output->region, - &output->previous_damage); + pixman_region32_intersect(&damage, &output->region, data); pixman_region32_translate(&damage, -output->x, -output->y); weston_transformed_region(output->width, output->height, output->transform, output->current_scale,