mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-09 13:29:46 -05:00
Add basic input
This commit is contained in:
parent
3a5b150df2
commit
9ca5b0cae8
2 changed files with 83 additions and 2 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue