aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/backend/multi.h
blob: e56b07b10b5450102497a32a76adc547c6658fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef WLR_BACKEND_MULTI_H
#define WLR_BACKEND_MULTI_H

#include <wlr/backend.h>
#include <wlr/backend/session.h>

struct wlr_backend *wlr_multi_backend_create(struct wl_display *display,
	struct wlr_session *session);
void wlr_multi_backend_add(struct wlr_backend *multi,
	struct wlr_backend *backend);

bool wlr_backend_is_multi(struct wlr_backend *backend);

struct wlr_session *wlr_multi_get_session(struct wlr_backend *base);

#endif