aboutsummaryrefslogtreecommitdiff
path: root/backend/libinput/touch.c
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2021-06-30 11:39:17 +0200
committerSimon Ser <contact@emersion.fr>2021-07-08 09:12:17 +0200
commit2d36d7fb6701c47b483759bd54c0f1526abc5e67 (patch)
tree93e587027cd7c0418acfef7631dce461beb68f0f /backend/libinput/touch.c
parent84906a832f77aaef8c055a83955db63ea4618a01 (diff)
backend/libinput: send touch frame events
Diffstat (limited to 'backend/libinput/touch.c')
-rw-r--r--backend/libinput/touch.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/backend/libinput/touch.c b/backend/libinput/touch.c
index f69bba75..ee987a91 100644
--- a/backend/libinput/touch.c
+++ b/backend/libinput/touch.c
@@ -95,3 +95,14 @@ void handle_touch_cancel(struct libinput_event *event,
wlr_event.touch_id = libinput_event_touch_get_seat_slot(tevent);
wlr_signal_emit_safe(&wlr_dev->touch->events.cancel, &wlr_event);
}
+
+void handle_touch_frame(struct libinput_event *event,
+ struct libinput_device *libinput_dev) {
+ struct wlr_input_device *wlr_dev =
+ get_appropriate_device(WLR_INPUT_DEVICE_TOUCH, libinput_dev);
+ if (!wlr_dev) {
+ wlr_log(WLR_DEBUG, "Got a touch event for a device with no touch?");
+ return;
+ }
+ wlr_signal_emit_safe(&wlr_dev->touch->events.frame, NULL);
+}