From 98087084065e2d14621f23b7c63ace0e869477b6 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Tue, 10 Mar 2015 12:05:44 +0200 Subject: [PATCH] zoom: remove unused args from weston_zoom_transition Also remove the now dead code from weston_output_update_zoom(). Signed-off-by: Pekka Paalanen Reviewed-By: Derek Foreman Reviewed-by: Jason Ekstrand --- src/zoom.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/zoom.c b/src/zoom.c index 16d487da..c70a70ce 100644 --- a/src/zoom.c +++ b/src/zoom.c @@ -121,7 +121,7 @@ weston_output_update_zoom_transform(struct weston_output *output) } static void -weston_zoom_transition(struct weston_output *output, wl_fixed_t x, wl_fixed_t y) +weston_zoom_transition(struct weston_output *output) { if (output->zoom.level != output->zoom.spring_z.current) { output->zoom.spring_z.target = output->zoom.level; @@ -140,15 +140,11 @@ WL_EXPORT void weston_output_update_zoom(struct weston_output *output) { struct weston_seat *seat = weston_zoom_pick_seat(output->compositor); - wl_fixed_t x = seat->pointer->x; - wl_fixed_t y = seat->pointer->y; - - zoom_area_center_from_pointer(output, &x, &y); output->zoom.current.x = seat->pointer->x; output->zoom.current.y = seat->pointer->y; - weston_zoom_transition(output, x, y); + weston_zoom_transition(output); weston_output_update_zoom_transform(output); }