2018-07-13 14:40:56 +02:00
|
|
|
/*
|
|
|
|
* This an unstable interface of wlroots. No guarantees are made regarding the
|
|
|
|
* future consistency of this API.
|
|
|
|
*/
|
|
|
|
#ifndef WLR_USE_UNSTABLE
|
|
|
|
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
|
|
|
|
#endif
|
|
|
|
|
2017-09-23 10:26:01 +02:00
|
|
|
#ifndef WLR_BACKEND_MULTI_H
|
|
|
|
#define WLR_BACKEND_MULTI_H
|
2017-06-13 04:22:40 +02:00
|
|
|
|
|
|
|
#include <wlr/backend.h>
|
|
|
|
|
2018-03-19 20:46:28 +01:00
|
|
|
/**
|
|
|
|
* Creates a multi-backend. Multi-backends wrap an arbitrary number of backends
|
|
|
|
* and aggregate their new_output/new_input signals.
|
|
|
|
*/
|
2017-12-20 00:25:46 +01:00
|
|
|
struct wlr_backend *wlr_multi_backend_create(struct wl_display *display);
|
2018-03-19 20:46:28 +01:00
|
|
|
/**
|
|
|
|
* Adds the given backend to the multi backend. This should be done before the
|
|
|
|
* new backend is started.
|
|
|
|
*/
|
2018-05-15 23:08:08 +02:00
|
|
|
bool wlr_multi_backend_add(struct wlr_backend *multi,
|
2017-12-19 18:28:47 +01:00
|
|
|
struct wlr_backend *backend);
|
2018-03-19 20:46:28 +01:00
|
|
|
|
2017-12-20 00:49:00 +01:00
|
|
|
void wlr_multi_backend_remove(struct wlr_backend *multi,
|
|
|
|
struct wlr_backend *backend);
|
2018-03-19 20:46:28 +01:00
|
|
|
|
2017-08-06 05:08:35 +02:00
|
|
|
bool wlr_backend_is_multi(struct wlr_backend *backend);
|
2017-12-20 11:51:23 +01:00
|
|
|
bool wlr_multi_is_empty(struct wlr_backend *backend);
|
|
|
|
|
2018-09-19 13:53:51 +02:00
|
|
|
void wlr_multi_for_each_backend(struct wlr_backend *backend,
|
|
|
|
void (*callback)(struct wlr_backend *backend, void *data), void *data);
|
|
|
|
|
2017-06-13 04:22:40 +02:00
|
|
|
#endif
|