diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-11-04 01:35:12 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-11-04 01:35:12 -0400 |
commit | 6d8e1abfc0a266e8ff1a8c9ba1a004faeaac79d5 (patch) | |
tree | f13d5269e8728fc66a1a8dd7b50fb355d83de7a2 /include | |
parent | 86b87299986a430a52b4eac3f2e0e7b659176c90 (diff) |
Improve input sensitivity
We now use doubles until the last minute, which makes it so we can move
the pointer more precisely. This also includes a fix for tablet tools,
which move absolutely and sometimes do not update the X or Y axis.
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_output.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h index e6323f9c..df123639 100644 --- a/include/wlr/types/wlr_output.h +++ b/include/wlr/types/wlr_output.h @@ -14,7 +14,7 @@ struct wlr_output_mode { struct wlr_output_cursor { struct wlr_output *output; - int32_t x, y; + double x, y; bool enabled; uint32_t width, height; int32_t hotspot_x, hotspot_y; @@ -95,7 +95,8 @@ bool wlr_output_cursor_set_image(struct wlr_output_cursor *cursor, int32_t hotspot_x, int32_t hotspot_y); void wlr_output_cursor_set_surface(struct wlr_output_cursor *cursor, struct wlr_surface *surface, int32_t hotspot_x, int32_t hotspot_y); -bool wlr_output_cursor_move(struct wlr_output_cursor *cursor, int x, int y); +bool wlr_output_cursor_move(struct wlr_output_cursor *cursor, + double x, double y); void wlr_output_cursor_destroy(struct wlr_output_cursor *cursor); #endif |