summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2021-02-16 13:13:49 -0600
committerDevin J. Pohly <djpohly@gmail.com>2021-02-16 13:13:49 -0600
commitc1eb2b49cdc7d85fb52c877ce47cd2a677cf3d5c (patch)
tree3eae28fbf7a8c9a533e398caa73630da36c167ee
parente8192b4fc920cba6c272a48fa86ca51bfd73f101 (diff)
Revert "Revert "remove EGL parameter from backend_autocreate""
This reverts commit 8ed88822ca4448b06c2d7e6155d8022152b78017.
-rw-r--r--dwl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwl.c b/dwl.c
index 6803594..72f1046 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, 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.