diff --git a/compositor/compositor-drm.c b/compositor/compositor-drm.c index f11b7886b..02214f595 100644 --- a/compositor/compositor-drm.c +++ b/compositor/compositor-drm.c @@ -344,8 +344,8 @@ init_egl(struct drm_compositor *ec, struct udev_device *device) } extensions = eglQueryString(ec->base.display, EGL_EXTENSIONS); - if (!strstr(extensions, "EGL_KHR_surfaceless_opengl")) { - fprintf(stderr, "EGL_KHR_surfaceless_opengl not available\n"); + if (!strstr(extensions, "EGL_KHR_surfaceless_gles2")) { + fprintf(stderr, "EGL_KHR_surfaceless_gles2 not available\n"); return -1; } diff --git a/compositor/compositor-openwfd.c b/compositor/compositor-openwfd.c index c507ad936..4cda851fc 100644 --- a/compositor/compositor-openwfd.c +++ b/compositor/compositor-openwfd.c @@ -151,8 +151,8 @@ init_egl(struct wfd_compositor *ec) } extensions = eglQueryString(ec->base.display, EGL_EXTENSIONS); - if (!strstr(extensions, "EGL_KHR_surfaceless_opengl")) { - fprintf(stderr, "EGL_KHR_surfaceless_opengl not available\n"); + if (!strstr(extensions, "EGL_KHR_surfaceless_gles2")) { + fprintf(stderr, "EGL_KHR_surfaceless_gles2 not available\n"); return -1; } diff --git a/compositor/compositor-wayland.c b/compositor/compositor-wayland.c index 4f0b025a8..790fe96fb 100644 --- a/compositor/compositor-wayland.c +++ b/compositor/compositor-wayland.c @@ -129,8 +129,8 @@ wayland_compositor_init_egl(struct wayland_compositor *c) } extensions = eglQueryString(c->base.display, EGL_EXTENSIONS); - if (!strstr(extensions, "EGL_KHR_surfaceless_opengl")) { - fprintf(stderr, "EGL_KHR_surfaceless_opengl not available\n"); + if (!strstr(extensions, "EGL_KHR_surfaceless_gles2")) { + fprintf(stderr, "EGL_KHR_surfaceless_gles2 not available\n"); return -1; } diff --git a/compositor/compositor-x11.c b/compositor/compositor-x11.c index 4962b5e29..544d7e2bb 100644 --- a/compositor/compositor-x11.c +++ b/compositor/compositor-x11.c @@ -134,8 +134,8 @@ x11_compositor_init_egl(struct x11_compositor *c) } extensions = eglQueryString(c->base.display, EGL_EXTENSIONS); - if (!strstr(extensions, "EGL_KHR_surfaceless_opengl")) { - fprintf(stderr, "EGL_KHR_surfaceless_opengl not available\n"); + if (!strstr(extensions, "EGL_KHR_surfaceless_gles2")) { + fprintf(stderr, "EGL_KHR_surfaceless_gles2 not available\n"); return -1; }