diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-03 15:44:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-03 15:44:07 -0400 |
commit | 1e39c37b3c78ea370e9fd870b63da194fc60d8fc (patch) | |
tree | d8dc34fcfd85da5b259c97387bbcfec916542dfe /include | |
parent | b58cb3de40ea83a34ef4ba946e173eeb9b94f74c (diff) | |
parent | 9609985f2976373772733d35f29fb682c144a261 (diff) |
Merge pull request #810 from emersion/x11-backend-configure-fix-cursor
backend/x11: fix cursor position when receiving configure event
Diffstat (limited to 'include')
-rw-r--r-- | include/backend/x11.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/backend/x11.h b/include/backend/x11.h index 33c9a427..2fce409e 100644 --- a/include/backend/x11.h +++ b/include/backend/x11.h @@ -79,6 +79,8 @@ const struct wlr_input_device_impl input_device_impl; bool x11_handle_input_event(struct wlr_x11_backend *x11, xcb_generic_event_t *event); +void x11_update_pointer_position(struct wlr_x11_output *output, + xcb_timestamp_t time); void x11_output_handle_configure_notify(struct wlr_x11_output *output, xcb_configure_notify_event_t *event); |