From b2f8f00ae369c232dfcf64a1b6843d1b926d379c Mon Sep 17 00:00:00 2001 From: Alain Greppin Date: Sun, 13 May 2018 15:17:17 +0200 Subject: [PATCH] fix check of EGL_WL_bind_wayland_display presence --- render/egl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render/egl.c b/render/egl.c index 433e554c..a1452e9d 100644 --- a/render/egl.c +++ b/render/egl.c @@ -209,7 +209,7 @@ void wlr_egl_finish(struct wlr_egl *egl) { } bool wlr_egl_bind_display(struct wlr_egl *egl, struct wl_display *local_display) { - if (!eglBindWaylandDisplayWL) { + if (!egl->egl_exts.bind_wayland_display) { return false; }