From 69e1997ebe3e38dee2f7318c3989f16e2bcac8f3 Mon Sep 17 00:00:00 2001 From: zccrs Date: Wed, 7 Apr 2021 21:15:39 +0800 Subject: [PATCH] render/egl: check "EGL_KHR_platform_gbm" for EGL gbm platform See the https://www.khronos.org/registry/EGL/extensions/KHR/EGL_KHR_platform_gbm.txt example code. On EGL_PLATFORM_GBM_KHR platform, we should be check the "EGL_KHR_platform_gbm" extension. Change-Id: Icf11c07c2949841a80b10527fb09987257fbd63b --- render/egl.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/render/egl.c b/render/egl.c index 80b38a90..9e6c366e 100644 --- a/render/egl.c +++ b/render/egl.c @@ -172,6 +172,13 @@ struct wlr_egl *wlr_egl_create(EGLenum platform, void *remote_display) { return NULL; } + if (platform == EGL_PLATFORM_GBM_KHR) { + if (!check_egl_ext(client_exts_str, "EGL_KHR_platform_gbm")) { + wlr_log(WLR_ERROR, "EGL_KHR_platform_gbm not supported"); + return NULL; + } + } + if (!check_egl_ext(client_exts_str, "EGL_EXT_platform_base")) { wlr_log(WLR_ERROR, "EGL_EXT_platform_base not supported"); return NULL;