diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/backend/x11.h | 12 | ||||
-rw-r--r-- | include/wlr/backend/x11.h | 6 |
2 files changed, 16 insertions, 2 deletions
diff --git a/include/backend/x11.h b/include/backend/x11.h index 2f319672..6ef86c8a 100644 --- a/include/backend/x11.h +++ b/include/backend/x11.h @@ -1,8 +1,20 @@ #ifndef WLR_X11_H #define WLR_X11_H +#include <xcb/xcb.h> +#include <X11/Xlib-xcb.h> +#include <wayland-server.h> +#include <wlr/egl.h> + struct wlr_x11_backend { struct wlr_backend backend; + + Display *xlib_conn; + xcb_connection_t *xcb_conn; + xcb_window_t win; + + struct wlr_egl egl; + struct wl_event_source *event_source; }; #endif diff --git a/include/wlr/backend/x11.h b/include/wlr/backend/x11.h index 28d027c5..3901649b 100644 --- a/include/wlr/backend/x11.h +++ b/include/wlr/backend/x11.h @@ -1,10 +1,12 @@ #ifndef WLR_BACKEND_X11_H #define WLR_BACKEND_X11_H -#include <wlr/backend.h> #include <stdbool.h> +#include <wayland-server.h> +#include <wlr/backend.h> -struct wlr_backend *wlr_x11_backend_create(const char *display); +struct wlr_backend *wlr_x11_backend_create(struct wl_display *display, + const char *x11_display); bool wlr_backend_is_x11(struct wlr_backend *backend); |