blob: 667bfd152f571ea88ede6da1516a9d8ff5791e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef WLR_BACKEND_X11_H
#define WLR_BACKEND_X11_H
#include <stdbool.h>
#include <wayland-server.h>
#include <wlr/backend.h>
#include <wlr/types/wlr_output.h>
struct wlr_backend *wlr_x11_backend_create(struct wl_display *display,
const char *x11_display);
bool wlr_backend_is_x11(struct wlr_backend *backend);
bool wlr_output_is_x11(struct wlr_output *output);
#endif
|