wlroots/include/backend/x11.h

35 lines
573 B
C
Raw Normal View History

2017-09-22 02:58:41 +00:00
#ifndef WLR_X11_H
#define WLR_X11_H
2017-09-26 03:04:07 +00:00
#include <stdbool.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-26 03:04:07 +00:00
#include <wlr/types/wlr_output.h>
struct wlr_x11_backend;
struct wlr_x11_output {
struct wlr_output wlr_output;
struct wlr_x11_backend *x11;
xcb_window_t win;
EGLSurface surf;
};
2017-09-22 04:00:27 +00:00
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-26 03:04:07 +00:00
struct wlr_x11_output output;
2017-09-22 04:00:27 +00:00
struct wlr_egl egl;
struct wl_event_source *event_source;
2017-09-22 02:58:41 +00:00
};
#endif