aboutsummaryrefslogtreecommitdiff
path: root/backend/multi
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-08-13 17:13:12 -0400
committerGitHub <noreply@github.com>2017-08-13 17:13:12 -0400
commitf11b38f97ad7eee040339604100fe545cbf77bb5 (patch)
treeab910dbaac5467bce3e4d1715a1b21ed9c4d199a /backend/multi
parent41e735242dc8788618bb668ad70ea164e47099db (diff)
parentde66bdb8679de14377306b7a903f2bc5d62fd169 (diff)
Merge pull request #82 from 4e554c4c/detection
Add backend detection functions
Diffstat (limited to 'backend/multi')
-rw-r--r--backend/multi/backend.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/backend/multi/backend.c b/backend/multi/backend.c
index 99cf3db9..94b7dd60 100644
--- a/backend/multi/backend.c
+++ b/backend/multi/backend.c
@@ -1,3 +1,4 @@
+#include <assert.h>
#include <stdbool.h>
#include <stdlib.h>
#include <wlr/backend/interface.h>
@@ -111,6 +112,8 @@ static void output_remove_reemit(struct wl_listener *listener, void *data) {
void wlr_multi_backend_add(struct wlr_backend *_multi,
struct wlr_backend *backend) {
+ assert(wlr_backend_is_multi(backend));
+
struct wlr_multi_backend *multi = (struct wlr_multi_backend *)_multi;
struct subbackend_state *sub = calloc(1, sizeof(struct subbackend_state));
sub->backend = backend;
@@ -135,10 +138,8 @@ void wlr_multi_backend_add(struct wlr_backend *_multi,
}
struct wlr_session *wlr_multi_get_session(struct wlr_backend *_backend) {
- // TODO: assert(wlr_backend_is_multi(_backend));
- if (_backend->impl != &backend_impl) {
- return NULL;
- }
+ assert(wlr_backend_is_multi(_backend));
+
struct wlr_multi_backend *backend = (struct wlr_multi_backend *)_backend;
return backend->session;
}