diff options
author | Carl Worth <[email protected]> | 2012-02-03 16:25:38 -0800 |
---|---|---|
committer | Carl Worth <[email protected]> | 2012-02-08 17:07:53 -0800 |
commit | 6c9af977401ff986964d678f8870eee23c504077 (patch) | |
tree | 0675657cbd806dc31ab824c1055f77b5fe7d9816 /src/glx/dri_glx.c | |
parent | 92bef0bfa121e0e58112ffae352c8ad9e5da6307 (diff) |
dri: Emit a critical error if a named driver fails to load.
Something has gone wrong if we were asked to load a driver of a
specific name, but it failed to load for some reason. The user really
should be made aware of this, (and instructed to set LIBGL_DEBUG for
more details).
Reviewed-by: Eugeni Dodonov <[email protected]>
Diffstat (limited to 'src/glx/dri_glx.c')
-rw-r--r-- | src/glx/dri_glx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glx/dri_glx.c b/src/glx/dri_glx.c index 0cd7cca74fb..9bfcb0c082a 100644 --- a/src/glx/dri_glx.c +++ b/src/glx/dri_glx.c @@ -916,6 +916,8 @@ driCreateScreen(int screen, struct glx_display *priv) return &psc->base; cleanup: + CriticalErrorMessageF("failed to load driver: %s\n", driverName); + if (psc->driver) dlclose(psc->driver); glx_screen_cleanup(&psc->base); |