aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlex Maese <memaese@hotmail.com>2018-12-17 14:24:07 -0600
committerAlex Maese <memaese@hotmail.com>2018-12-21 12:20:48 -0600
commite276d310e81c6bebf883ff3eeff5210d306b1c57 (patch)
tree88199f98e7de221eb56a7d8ecfa32bf850c786f7 /include
parenta803a007fb9c572e0eccc22ab670ac711cb89b13 (diff)
Add unaccelerated pointer values to wlr_event_pointer_motion events
Diffstat (limited to 'include')
-rw-r--r--include/wlr/types/wlr_pointer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_pointer.h b/include/wlr/types/wlr_pointer.h
index 7dc643ae..6da4c02a 100644
--- a/include/wlr/types/wlr_pointer.h
+++ b/include/wlr/types/wlr_pointer.h
@@ -32,6 +32,7 @@ struct wlr_event_pointer_motion {
struct wlr_input_device *device;
uint32_t time_msec;
double delta_x, delta_y;
+ double unaccel_dx, unaccel_dy;
};
struct wlr_event_pointer_motion_absolute {