wlroots/include/backend/x11.h

22 lines
353 B
C
Raw Normal View History

2017-09-22 02:58:41 +00:00
#ifndef WLR_X11_H
#define WLR_X11_H
2017-09-22 04:00:27 +00:00
#include <xcb/xcb.h>
#include <X11/Xlib-xcb.h>
#include <wayland-server.h>
#include <wlr/egl.h>
2017-09-22 02:58:41 +00:00
struct wlr_x11_backend {
struct wlr_backend backend;
2017-09-22 04:00:27 +00:00
Display *xlib_conn;
xcb_connection_t *xcb_conn;
2017-09-26 02:16:25 +00:00
xcb_screen_t *screen;
2017-09-22 04:00:27 +00:00
xcb_window_t win;
struct wlr_egl egl;
struct wl_event_source *event_source;
2017-09-22 02:58:41 +00:00
};
#endif