diff options
author | Samuel Thibault <[email protected]> | 2018-01-15 15:38:25 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-01-16 16:27:19 +0000 |
commit | 47ac11bcf8bd9e4525e0fb4308d0bca87a8900c6 (patch) | |
tree | f48b774f8686be7965f1869e1d7b2394f4dcba62 | |
parent | 338638a8afc9f330bacc1cdd7e6392a3ea9d828a (diff) |
glx: fix non-dri build
glXGetDriverConfig parameters do not provide a context to dynamically
check for the presence of the function, so the dispatcher directly calls
glXGetDriverConfig, but in non-dri builds dri_glx.c didn't provide
glXGetDriverConfig.
This change make it just return NULL in that case.
Fixes: 84f764a7591 "glxglvnddispatch: Add missing dispatch for GetDriverConfig
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Hans de Goede <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
-rw-r--r-- | src/glx/g_glxglvnddispatchfuncs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/glx/g_glxglvnddispatchfuncs.c b/src/glx/g_glxglvnddispatchfuncs.c index 56d894eda72..5b65afc8602 100644 --- a/src/glx/g_glxglvnddispatchfuncs.c +++ b/src/glx/g_glxglvnddispatchfuncs.c @@ -338,11 +338,15 @@ static Display *dispatch_GetCurrentDisplayEXT(void) static const char *dispatch_GetDriverConfig(const char *driverName) { +#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL) /* * The options are constant for a given driverName, so we do not need * a context (and apps expect to be able to call this without one). */ return glXGetDriverConfig(driverName); +#else + return NULL; +#endif } |