From 5a87712ca8e756890427c9765f6f574dfec32395 Mon Sep 17 00:00:00 2001 From: emersion Date: Thu, 26 Apr 2018 11:11:28 +0100 Subject: [PATCH] Log required extension name if unavailable --- render/egl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render/egl.c b/render/egl.c index 95bdef55..433e554c 100644 --- a/render/egl.c +++ b/render/egl.c @@ -162,7 +162,7 @@ bool wlr_egl_init(struct wlr_egl *egl, EGLenum platform, void *remote_display, wlr_log(L_INFO, "EGL vendor: %s", eglQueryString(egl->display, EGL_VENDOR)); if (!check_egl_ext(egl->exts_str, "EGL_KHR_image_base")) { - wlr_log(L_ERROR, "Required egl extensions not supported"); + wlr_log(L_ERROR, "Required EGL_KHR_image_base extension not supported"); goto error; }