aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-10-13 23:39:38 -0400
committerDrew DeVault <sir@cmpwn.com>2018-10-13 23:39:38 -0400
commit63c69cee6ec3ec3c292af9caf9d3ccd6d7498bbf (patch)
tree400cdef0696b0b110a5432e622495a19251e7f6e
parent31f338bb361d740a23f0e4edcbd36f846f439d17 (diff)
Fix headless backend
It was only working if you ran it underneath an already-working Wayland compositor. Running with the headless backend on the API would break.
-rw-r--r--render/egl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/egl.c b/render/egl.c
index 585baaeb..cfa37f20 100644
--- a/render/egl.c
+++ b/render/egl.c
@@ -121,7 +121,7 @@ bool wlr_egl_init(struct wlr_egl *egl, EGLenum platform, void *remote_display,
if (platform == EGL_PLATFORM_SURFACELESS_MESA) {
assert(remote_display == NULL);
- egl->display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
+ egl->display = eglGetPlatformDisplayEXT(platform, EGL_DEFAULT_DISPLAY, NULL);
} else {
egl->display = eglGetPlatformDisplayEXT(platform, remote_display, NULL);
}