diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-28 11:04:40 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-03-28 11:04:40 -0400 |
commit | 324b9d910dc237151fd71c01bef015d0080be191 (patch) | |
tree | 22f412fd0aee7f41ffe5282d2834adb0f4aeb1fb /examples/support/shared.h | |
parent | a35a5786b0e40cb1ffa87344d3cb21dff9fd99f4 (diff) |
Remove width_mm from wlr_touch events
Diffstat (limited to 'examples/support/shared.h')
-rw-r--r-- | examples/support/shared.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/support/shared.h b/examples/support/shared.h index d00e75b3..2079a9ef 100644 --- a/examples/support/shared.h +++ b/examples/support/shared.h @@ -102,10 +102,10 @@ struct compositor_state { enum wlr_axis_source source, enum wlr_axis_orientation orientation, double delta); - void (*touch_down_cb)(struct touch_state *s, int32_t touch_id, - double x, double y, double width, double height); - void (*touch_motion_cb)(struct touch_state *s, int32_t touch_id, - double x, double y, double width, double height); + void (*touch_down_cb)(struct touch_state *s, + int32_t touch_id, double x, double y); + void (*touch_motion_cb)(struct touch_state *s, + int32_t touch_id, double x, double y); void (*touch_up_cb)(struct touch_state *s, int32_t touch_id); void (*touch_cancel_cb)(struct touch_state *s, int32_t touch_id); void (*tool_axis_cb)(struct tablet_tool_state *s, |