wlroots-hyprland/include/backend/x11.h

42 lines
752 B
C
Raw Normal View History

2017-09-22 04:58:41 +02:00
#ifndef WLR_X11_H
#define WLR_X11_H
2017-09-26 05:04:07 +02:00
#include <stdbool.h>
2017-09-22 06:00:27 +02:00
#include <xcb/xcb.h>
#include <X11/Xlib-xcb.h>
#include <wayland-server.h>
#include <wlr/egl.h>
2017-09-26 05:04:07 +02:00
#include <wlr/types/wlr_output.h>
2017-09-27 05:39:44 +02:00
#include <wlr/types/wlr_input_device.h>
2017-09-26 05:04:07 +02:00
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 06:00:27 +02:00
2017-09-22 04:58:41 +02:00
struct wlr_x11_backend {
struct wlr_backend backend;
2017-09-22 06:00:27 +02:00
Display *xlib_conn;
xcb_connection_t *xcb_conn;
2017-09-26 04:16:25 +02:00
xcb_screen_t *screen;
2017-09-26 05:04:07 +02:00
struct wlr_x11_output output;
2017-09-22 06:00:27 +02:00
2017-09-27 05:39:44 +02:00
struct wlr_keyboard keyboard;
struct wlr_input_device keyboard_dev;
struct wlr_pointer pointer;
struct wlr_input_device pointer_dev;
2017-09-22 06:00:27 +02:00
struct wlr_egl egl;
struct wl_event_source *event_source;
2017-09-22 04:58:41 +02:00
};
#endif