diff options
author | Scott Anderson <scott@anderso.nz> | 2018-11-11 14:51:22 +1300 |
---|---|---|
committer | Scott Anderson <scott@anderso.nz> | 2018-11-13 10:55:03 +1300 |
commit | d3ee69f76bbc8b71a79840c047fa7a6144ddc628 (patch) | |
tree | 29d08a6cfdd92ed2b12ebf1139164fbb79f7ce78 /include | |
parent | 70ae76304e5c40774dd50a23537cdc419cdfa4c6 (diff) |
backend/x11: Hide cursor with Xfixes
Diffstat (limited to 'include')
-rw-r--r-- | include/backend/x11.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/backend/x11.h b/include/backend/x11.h index 94de129f..1a8341f6 100644 --- a/include/backend/x11.h +++ b/include/backend/x11.h @@ -33,6 +33,8 @@ struct wlr_x11_output { struct wl_event_source *frame_timer; int frame_delay; + + bool cursor_hidden; }; struct wlr_x11_backend { @@ -64,9 +66,6 @@ struct wlr_x11_backend { // The time we last received an event xcb_timestamp_t time; - // A blank cursor - xcb_cursor_t cursor; - uint8_t xinput_opcode; struct wl_listener display_destroy; |