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.
master
Drew DeVault 6 years ago
parent 31f338bb36
commit 63c69cee6e

@ -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);
}

Loading…
Cancel
Save