diff options
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/x11.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/backend/x11.h b/include/backend/x11.h index eb46e77e..707f4ca8 100644 --- a/include/backend/x11.h +++ b/include/backend/x11.h @@ -7,6 +7,7 @@ #include <wayland-server.h> #include <wlr/egl.h> #include <wlr/types/wlr_output.h> +#include <wlr/types/wlr_input_device.h> struct wlr_x11_backend; @@ -27,6 +28,12 @@ struct wlr_x11_backend { struct wlr_x11_output output; + struct wlr_keyboard keyboard; + struct wlr_input_device keyboard_dev; + + struct wlr_pointer pointer; + struct wlr_input_device pointer_dev; + struct wlr_egl egl; struct wl_event_source *event_source; }; |