diff options
author | Alain Greppin <agreppin@users.noreply.github.com> | 2018-05-13 15:17:17 +0200 |
---|---|---|
committer | Alain Greppin <agreppin@users.noreply.github.com> | 2018-05-13 15:17:17 +0200 |
commit | b2f8f00ae369c232dfcf64a1b6843d1b926d379c (patch) | |
tree | 913ac73fbc49dcef5e12276e49c4fc08a4b7cb82 /render | |
parent | 059e5f6690c5d7b084517df87537ec16463d470c (diff) |
fix check of EGL_WL_bind_wayland_display presence
Diffstat (limited to 'render')
-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 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; } |