aboutsummaryrefslogtreecommitdiff
path: root/rootston
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-04-08 11:00:56 -0400
committeremersion <contact@emersion.fr>2018-04-08 11:00:56 -0400
commitd2ebbd103cda11b36fa44aa801128b2e477d465b (patch)
tree7219ae49eceb828e832119a5f0293fbea6164765 /rootston
parentf4125220a58f508d54f5103d4b0580f1d047f6b9 (diff)
backend: remove wlr_backend_get_egl
Diffstat (limited to 'rootston')
-rw-r--r--rootston/desktop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rootston/desktop.c b/rootston/desktop.c
index f1afe2c9..177828af 100644
--- a/rootston/desktop.c
+++ b/rootston/desktop.c
@@ -867,8 +867,8 @@ struct roots_desktop *desktop_create(struct roots_server *server,
wl_signal_add(&desktop->input_inhibit->events.deactivate,
&desktop->input_inhibit_deactivate);
- struct wlr_egl *egl = wlr_backend_get_egl(server->backend);
- desktop->linux_dmabuf = wlr_linux_dmabuf_create(server->wl_display, egl);
+ desktop->linux_dmabuf = wlr_linux_dmabuf_create(server->wl_display,
+ server->renderer);
return desktop;
}