diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-08-28 22:12:35 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-08-28 22:12:35 -0400 |
commit | 30611894f2c411830a57e813c441e901068ff033 (patch) | |
tree | 25954c301fb08d9a2e5e3f6a53be12f83a52a1f7 /include | |
parent | 4fbe322fa6fcdbfda6b7006869358fdb47caff6e (diff) |
Implement tablet_tool support in pointer example
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_tablet_tool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_tablet_tool.h b/include/wlr/types/wlr_tablet_tool.h index 98fd82c0..9090828a 100644 --- a/include/wlr/types/wlr_tablet_tool.h +++ b/include/wlr/types/wlr_tablet_tool.h @@ -55,7 +55,7 @@ struct wlr_event_tablet_tool_proximity { struct wlr_input_device *device; uint32_t time_sec; uint64_t time_usec; - double x, y; + double x_mm, y_mm; double width_mm, height_mm; enum wlr_tablet_tool_proximity_state state; }; @@ -69,7 +69,7 @@ struct wlr_event_tablet_tool_tip { struct wlr_input_device *device; uint32_t time_sec; uint64_t time_usec; - double x, y; + double x_mm, y_mm; double width_mm, height_mm; enum wlr_tablet_tool_tip_state state; }; |