diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-10-30 06:40:06 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-10-30 06:40:06 -0400 |
commit | a224e74fadd6393e25ec7392115892aec87dc11a (patch) | |
tree | ea0106122b9bb2e0369c3a6499e11477e806b454 /backend/libinput/touch.c | |
parent | 57efc3417f2131d643f8677093ec9b3e8301016e (diff) |
refactor input time_sec to time_msec
Diffstat (limited to 'backend/libinput/touch.c')
-rw-r--r-- | backend/libinput/touch.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/backend/libinput/touch.c b/backend/libinput/touch.c index 2f300482..2fd23fe6 100644 --- a/backend/libinput/touch.c +++ b/backend/libinput/touch.c @@ -31,8 +31,8 @@ void handle_touch_down(struct libinput_event *event, libinput_event_get_touch_event(event); struct wlr_event_touch_down wlr_event = { 0 }; wlr_event.device = wlr_dev; - wlr_event.time_sec = libinput_event_touch_get_time(tevent); wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent); + wlr_event.time_msec = (uint32_t)(wlr_event.time_usec / 1000); wlr_event.slot = libinput_event_touch_get_slot(tevent); wlr_event.x_mm = libinput_event_touch_get_x(tevent); wlr_event.y_mm = libinput_event_touch_get_y(tevent); @@ -52,8 +52,8 @@ void handle_touch_up(struct libinput_event *event, libinput_event_get_touch_event(event); struct wlr_event_touch_up wlr_event = { 0 }; wlr_event.device = wlr_dev; - wlr_event.time_sec = libinput_event_touch_get_time(tevent); wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent); + wlr_event.time_msec = (uint32_t)(wlr_event.time_usec / 1000); wlr_event.slot = libinput_event_touch_get_slot(tevent); wl_signal_emit(&wlr_dev->touch->events.up, &wlr_event); } @@ -70,8 +70,8 @@ void handle_touch_motion(struct libinput_event *event, libinput_event_get_touch_event(event); struct wlr_event_touch_motion wlr_event = { 0 }; wlr_event.device = wlr_dev; - wlr_event.time_sec = libinput_event_touch_get_time(tevent); wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent); + wlr_event.time_msec = (uint32_t)(wlr_event.time_usec / 1000); wlr_event.slot = libinput_event_touch_get_slot(tevent); wlr_event.x_mm = libinput_event_touch_get_x(tevent); wlr_event.y_mm = libinput_event_touch_get_y(tevent); @@ -91,8 +91,8 @@ void handle_touch_cancel(struct libinput_event *event, libinput_event_get_touch_event(event); struct wlr_event_touch_cancel wlr_event = { 0 }; wlr_event.device = wlr_dev; - wlr_event.time_sec = libinput_event_touch_get_time(tevent); wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent); + wlr_event.time_msec = (uint32_t)(wlr_event.time_usec / 1000); wlr_event.slot = libinput_event_touch_get_slot(tevent); wl_signal_emit(&wlr_dev->touch->events.cancel, &wlr_event); } |