From: Tiago Vignatti Date: Tue, 22 Nov 2011 10:05:22 +0000 (+0200) Subject: evdev: fetch absolute coordinates inside flush_motion only X-Git-Tag: 0.85.0~241^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f547bd36e67c85de8aaf1be6b704f153a15b36d6;p=profile%2Fivi%2Fweston.git evdev: fetch absolute coordinates inside flush_motion only Signed-off-by: Tiago Vignatti --- diff --git a/compositor/evdev.c b/compositor/evdev.c index 96fb0cd..06913cf 100644 --- a/compositor/evdev.c +++ b/compositor/evdev.c @@ -208,8 +208,9 @@ evdev_flush_motion(struct wl_input_device *device, uint32_t time, struct evdev_motion_accumulator *accum) { if (accum->type == EVDEV_RELATIVE_MOTION) { - notify_motion(device, time, accum->x + accum->dx, - accum->y + accum->dy); + accum->dx += device->x; + accum->dy += device->y; + notify_motion(device, time, accum->dx, accum->dy); accum->dx = accum->dy = 0; } if (accum->type == EVDEV_ABSOLUTE_MOTION) @@ -233,16 +234,14 @@ evdev_input_device_data(int fd, uint32_t mask, void *data) if (!ec->focus) return 1; - memset(&accumulator, 0, sizeof accumulator); - accumulator.x = device->master->base.input_device.x; - accumulator.y = device->master->base.input_device.y; - len = read(fd, &ev, sizeof ev); if (len < 0 || len % sizeof e[0] != 0) { /* FIXME: call device_removed when errno is ENODEV. */; return 1; } + memset(&accumulator, 0, sizeof accumulator); + e = ev; end = (void *) ev + len; for (e = ev; e < end; e++) {