Skip to content

Commit

Permalink
Merge pull request #974 from agreppin/master
Browse files Browse the repository at this point in the history
fix check of EGL_WL_bind_wayland_display presence
  • Loading branch information
ddevault authored May 13, 2018
2 parents 658a006 + b2f8f00 commit 0ba0aae
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 0ba0aae

Please sign in to comment.