aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2021-01-04 13:55:24 -0500
committerDevin J. Pohly <djpohly@gmail.com>2021-01-04 13:55:24 -0500
commit0ff13cf216056a36a261f4eed53c6a864989a9fb (patch)
treee6a672dd01cc4ec6a470b90f81544f159c11e313
parentd7601cd48a3a261f438a8fb2bcef8b839921a8d8 (diff)
remove EGL parameter from backend_autocreate
Tracking with breaking change in swaywm/wlroots#2593.
-rw-r--r--dwl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwl.c b/dwl.c
index ef49b99..29778d1 100644
--- a/dwl.c
+++ b/dwl.c
@@ -2022,7 +2022,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, NULL)))
+ if (!(backend = wlr_backend_autocreate(dpy)))
BARF("couldn't create backend");
/* If we don't provide a renderer, autocreate makes a GLES2 renderer for us.