diff options
author | emersion <contact@emersion.fr> | 2018-04-08 11:00:56 -0400 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-04-08 11:00:56 -0400 |
commit | d2ebbd103cda11b36fa44aa801128b2e477d465b (patch) | |
tree | 7219ae49eceb828e832119a5f0293fbea6164765 /backend/multi | |
parent | f4125220a58f508d54f5103d4b0580f1d047f6b9 (diff) |
backend: remove wlr_backend_get_egl
Diffstat (limited to 'backend/multi')
-rw-r--r-- | backend/multi/backend.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/backend/multi/backend.c b/backend/multi/backend.c index 5cb3fbc5..50563892 100644 --- a/backend/multi/backend.c +++ b/backend/multi/backend.c @@ -52,18 +52,6 @@ static void multi_backend_destroy(struct wlr_backend *wlr_backend) { free(backend); } -static struct wlr_egl *multi_backend_get_egl(struct wlr_backend *wlr_backend) { - struct wlr_multi_backend *backend = (struct wlr_multi_backend *)wlr_backend; - struct subbackend_state *sub; - wl_list_for_each(sub, &backend->backends, link) { - struct wlr_egl *egl = wlr_backend_get_egl(sub->backend); - if (egl) { - return egl; - } - } - return NULL; -} - static struct wlr_renderer *multi_backend_get_renderer( struct wlr_backend *backend) { struct wlr_multi_backend *multi = (struct wlr_multi_backend *)backend; @@ -80,7 +68,6 @@ static struct wlr_renderer *multi_backend_get_renderer( struct wlr_backend_impl backend_impl = { .start = multi_backend_start, .destroy = multi_backend_destroy, - .get_egl = multi_backend_get_egl, .get_renderer = multi_backend_get_renderer, }; |