mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-01 22:58:38 -04:00
backend/x11: add one pointer per output
This commit is contained in:
parent
ddac792b61
commit
62d7337d00
4 changed files with 40 additions and 68 deletions
|
|
@ -24,6 +24,9 @@ struct wlr_x11_output {
|
|||
xcb_window_t win;
|
||||
EGLSurface surf;
|
||||
|
||||
struct wlr_pointer pointer;
|
||||
struct wlr_input_device pointer_dev;
|
||||
|
||||
struct wl_event_source *frame_timer;
|
||||
int frame_delay;
|
||||
};
|
||||
|
|
@ -43,9 +46,6 @@ struct wlr_x11_backend {
|
|||
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 wlr_renderer *renderer;
|
||||
struct wl_event_source *event_source;
|
||||
|
|
@ -74,8 +74,6 @@ struct wlr_x11_backend {
|
|||
|
||||
struct wlr_x11_output *get_x11_output_from_window_id(struct wlr_x11_backend *x11,
|
||||
xcb_window_t window);
|
||||
void get_x11_output_layout_box(struct wlr_x11_backend *backend,
|
||||
struct wlr_box *box);
|
||||
|
||||
extern const struct wlr_keyboard_impl keyboard_impl;
|
||||
extern const struct wlr_pointer_impl pointer_impl;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue