From 8ed88822ca4448b06c2d7e6155d8022152b78017 Mon Sep 17 00:00:00 2001 From: "Devin J. Pohly" Date: Tue, 16 Feb 2021 13:08:58 -0600 Subject: [PATCH] Revert "remove EGL parameter from backend_autocreate" This reverts commit 0ff13cf216056a36a261f4eed53c6a864989a9fb. --- dwl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dwl.c b/dwl.c index 72f1046..6803594 100644 --- a/dwl.c +++ b/dwl.c @@ -1995,7 +1995,7 @@ setup(void) * backend uses the renderer, for example, to fall back to software cursors * if the backend does not support hardware cursors (some older GPUs * don't). */ - if (!(backend = wlr_backend_autocreate(dpy))) + if (!(backend = wlr_backend_autocreate(dpy, NULL))) BARF("couldn't create backend"); /* If we don't provide a renderer, autocreate makes a GLES2 renderer for us.