diff options
| author | Tony Crisci <tony@dubstepdish.com> | 2017-08-24 14:35:55 -0400 | 
|---|---|---|
| committer | Tony Crisci <tony@dubstepdish.com> | 2017-08-26 08:32:11 -0400 | 
| commit | 98f4cdfccb7d2ace2929bca45f0479b3472b96ac (patch) | |
| tree | 03128da9c11198dc3dbe929bf9a413c1d945189c /backend/libinput | |
| parent | 13e895d943eca5e86f68230c5ca503090866aafc (diff) | |
| download | wlroots-98f4cdfccb7d2ace2929bca45f0479b3472b96ac.tar.xz | |
implement wlr_cursor_map_input_to_output
Diffstat (limited to 'backend/libinput')
| -rw-r--r-- | backend/libinput/pointer.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/backend/libinput/pointer.c b/backend/libinput/pointer.c index 8bda205d..005c9516 100644 --- a/backend/libinput/pointer.c +++ b/backend/libinput/pointer.c @@ -30,6 +30,7 @@ void handle_pointer_motion(struct libinput_event *event,  	struct libinput_event_pointer *pevent =  		libinput_event_get_pointer_event(event);  	struct wlr_event_pointer_motion wlr_event = { 0 }; +	wlr_event.device = wlr_dev;  	wlr_event.time_sec = libinput_event_pointer_get_time(pevent);  	wlr_event.time_usec = libinput_event_pointer_get_time_usec(pevent);  	wlr_event.delta_x = libinput_event_pointer_get_dx(pevent); @@ -48,6 +49,7 @@ void handle_pointer_motion_abs(struct libinput_event *event,  	struct libinput_event_pointer *pevent =  		libinput_event_get_pointer_event(event);  	struct wlr_event_pointer_motion_absolute wlr_event = { 0 }; +	wlr_event.device = wlr_dev;  	wlr_event.time_sec = libinput_event_pointer_get_time(pevent);  	wlr_event.time_usec = libinput_event_pointer_get_time_usec(pevent);  	wlr_event.x_mm = libinput_event_pointer_get_absolute_x(pevent); @@ -67,6 +69,7 @@ void handle_pointer_button(struct libinput_event *event,  	struct libinput_event_pointer *pevent =  		libinput_event_get_pointer_event(event);  	struct wlr_event_pointer_button wlr_event = { 0 }; +	wlr_event.device = wlr_dev;  	wlr_event.time_sec = libinput_event_pointer_get_time(pevent);  	wlr_event.time_usec = libinput_event_pointer_get_time_usec(pevent);  	wlr_event.button = libinput_event_pointer_get_button(pevent); @@ -92,6 +95,7 @@ void handle_pointer_axis(struct libinput_event *event,  	struct libinput_event_pointer *pevent =  		libinput_event_get_pointer_event(event);  	struct wlr_event_pointer_axis wlr_event = { 0 }; +	wlr_event.device = wlr_dev;  	wlr_event.time_sec = libinput_event_pointer_get_time(pevent);  	wlr_event.time_usec = libinput_event_pointer_get_time_usec(pevent);  	switch (libinput_event_pointer_get_axis_source(pevent)) { | 
