summaryrefslogtreecommitdiff
path: root/src/data-device.c
diff options
context:
space:
mode:
authorJonas Ådahl <jadahl@gmail.com>2014-04-12 09:39:51 +0200
committerKristian Høgsberg <krh@bitplanet.net>2014-04-21 16:03:28 -0700
commit1679f232e541489eedd94774bcfaec9752fdea64 (patch)
tree943d751f7bb59d545e6d5fad314d83017d649de1 /src/data-device.c
parente57d1f211d1d9ff594e81e1cb14f587587c6c3c7 (diff)
downloadweston-1679f232e541489eedd94774bcfaec9752fdea64.tar.gz
libinput: Forward frame events to clients
Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=77353 Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Diffstat (limited to 'src/data-device.c')
-rw-r--r--src/data-device.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/data-device.c b/src/data-device.c
index 483e22e9..6a81bc8e 100644
--- a/src/data-device.c
+++ b/src/data-device.c
@@ -497,6 +497,11 @@ drag_grab_touch_motion(struct weston_touch_grab *grab, uint32_t time,
}
static void
+drag_grab_touch_frame(struct weston_touch_grab *grab)
+{
+}
+
+static void
drag_grab_touch_cancel(struct weston_touch_grab *grab)
{
struct weston_touch_drag *touch_drag =
@@ -511,6 +516,7 @@ static const struct weston_touch_grab_interface touch_drag_grab_interface = {
drag_grab_touch_down,
drag_grab_touch_up,
drag_grab_touch_motion,
+ drag_grab_touch_frame,
drag_grab_touch_cancel
};