From: Eric Engestrom Date: Sat, 22 Jun 2019 21:31:00 +0000 (+0100) Subject: egl: move eglGetConfigAttrib() fallback to eglapi.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7f848f9713a954f3caab279c0ff5ad5f81a2d066;p=mesa.git egl: move eglGetConfigAttrib() fallback to eglapi.c Signed-off-by: Eric Engestrom Reviewed-by: Tapani Pälli --- diff --git a/src/egl/main/eglapi.c b/src/egl/main/eglapi.c index 394207b9151..7309eb08d1c 100644 --- a/src/egl/main/eglapi.c +++ b/src/egl/main/eglapi.c @@ -772,7 +772,11 @@ eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE); _EGL_CHECK_CONFIG(disp, conf, EGL_FALSE, drv); - ret = drv->API.GetConfigAttrib(drv, disp, conf, attribute, value); + + if (drv->API.GetConfigAttrib) + ret = drv->API.GetConfigAttrib(drv, disp, conf, attribute, value); + else + ret = _eglGetConfigAttrib(drv, disp, conf, attribute, value); RETURN_EGL_EVAL(disp, ret); } diff --git a/src/egl/main/eglfallbacks.c b/src/egl/main/eglfallbacks.c index f2c8bc43bdd..1e679625934 100644 --- a/src/egl/main/eglfallbacks.c +++ b/src/egl/main/eglfallbacks.c @@ -42,8 +42,6 @@ void _eglInitDriverFallbacks(_EGLDriver *drv) { - drv->API.GetConfigAttrib = _eglGetConfigAttrib; - drv->API.QueryContext = _eglQueryContext; drv->API.QuerySurface = _eglQuerySurface;