diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-12-21 18:40:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-21 18:40:54 -0500 |
commit | 0a370c529806077a11638e7fa856d5fbb539496b (patch) | |
tree | b00eb27649a61035af82b735673e6fd780862f9b /include/wlr | |
parent | 1a96ce0c53c84295d33b143e1b6cf02cb7017d50 (diff) | |
parent | 4cec7f54e24a58fd9756395ce64a5bd73f412c9e (diff) |
Merge pull request #506 from acrisci/multi-backend-fixes
[wip] multibackend fixes
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/backend.h | 1 | ||||
-rw-r--r-- | include/wlr/backend/multi.h | 9 |
2 files changed, 8 insertions, 2 deletions
diff --git a/include/wlr/backend.h b/include/wlr/backend.h index 2c8fd982..4632dcbf 100644 --- a/include/wlr/backend.h +++ b/include/wlr/backend.h @@ -11,6 +11,7 @@ struct wlr_backend { const struct wlr_backend_impl *impl; struct { + struct wl_signal destroy; struct wl_signal input_add; struct wl_signal input_remove; struct wl_signal output_add; diff --git a/include/wlr/backend/multi.h b/include/wlr/backend/multi.h index e56b07b1..d9914efc 100644 --- a/include/wlr/backend/multi.h +++ b/include/wlr/backend/multi.h @@ -4,13 +4,18 @@ #include <wlr/backend.h> #include <wlr/backend/session.h> -struct wlr_backend *wlr_multi_backend_create(struct wl_display *display, - struct wlr_session *session); +struct wlr_backend *wlr_multi_backend_create(struct wl_display *display); + void wlr_multi_backend_add(struct wlr_backend *multi, struct wlr_backend *backend); +void wlr_multi_backend_remove(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); +bool wlr_multi_is_empty(struct wlr_backend *backend); + #endif |