aboutsummaryrefslogtreecommitdiff
path: root/render/egl.c
diff options
context:
space:
mode:
authorAlain Greppin <agreppin@users.noreply.github.com>2018-05-13 15:17:17 +0200
committerAlain Greppin <agreppin@users.noreply.github.com>2018-05-13 15:17:17 +0200
commitb2f8f00ae369c232dfcf64a1b6843d1b926d379c (patch)
tree913ac73fbc49dcef5e12276e49c4fc08a4b7cb82 /render/egl.c
parent059e5f6690c5d7b084517df87537ec16463d470c (diff)
fix check of EGL_WL_bind_wayland_display presence
Diffstat (limited to 'render/egl.c')
-rw-r--r--render/egl.c2
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;
}