Skip to content

Commit

Permalink
fix check of EGL_WL_bind_wayland_display presence
Browse files Browse the repository at this point in the history
  • Loading branch information
agreppin committed May 13, 2018
1 parent 059e5f6 commit b2f8f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion render/egl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit b2f8f00

Please sign in to comment.