diff options
| author | agr <agreppin@users.noreply.github.com> | 2018-05-23 16:17:29 +0200 | 
|---|---|---|
| committer | agr <agreppin@users.noreply.github.com> | 2018-05-23 16:17:29 +0200 | 
| commit | 4e89e0fc6c3cb61bf6e9a3aca1af75fc5e4549ed (patch) | |
| tree | a34e7e54a81c27814c3967fdf7d5f712777308f6 | |
| parent | 341af97125b4376d7a38f00299539ebb050b235c (diff) | |
| download | wlroots-4e89e0fc6c3cb61bf6e9a3aca1af75fc5e4549ed.tar.xz | |
fix server exit: eglMakeCurrent Invalid display
| -rw-r--r-- | render/egl.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/render/egl.c b/render/egl.c index a1452e9d..579bb5fe 100644 --- a/render/egl.c +++ b/render/egl.c @@ -198,8 +198,8 @@ void wlr_egl_finish(struct wlr_egl *egl) {  		return;  	} -	eglMakeCurrent(EGL_NO_DISPLAY, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); -	if (egl->wl_display && eglUnbindWaylandDisplayWL) { +	eglMakeCurrent(egl->display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); +	if (egl->wl_display && egl->egl_exts.bind_wayland_display) {  		eglUnbindWaylandDisplayWL(egl->display, egl->wl_display);  	} | 
