diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-13 23:39:38 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-10-13 23:39:38 -0400 |
commit | 63c69cee6ec3ec3c292af9caf9d3ccd6d7498bbf (patch) | |
tree | 400cdef0696b0b110a5432e622495a19251e7f6e /render/egl.c | |
parent | 31f338bb361d740a23f0e4edcbd36f846f439d17 (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.
Diffstat (limited to 'render/egl.c')
-rw-r--r-- | render/egl.c | 2 |
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); } |