Module: Mesa
Branch: master
Commit: 6c9af977401ff986964d678f8870eee23c504077
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=6c9af977401ff986964d678f8870eee23c504077

Author: Carl Worth <[email protected]>
Date:   Fri Feb  3 16:25:38 2012 -0800

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]>

---

 src/glx/dri2_glx.c |    2 ++
 src/glx/dri_glx.c  |    2 ++
 2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/glx/dri2_glx.c b/src/glx/dri2_glx.c
index 10b6f52..b09606a 100644
--- a/src/glx/dri2_glx.c
+++ b/src/glx/dri2_glx.c
@@ -1135,6 +1135,8 @@ dri2CreateScreen(int screen, struct glx_display * priv)
    return &psc->base;
 
 handle_error:
+   CriticalErrorMessageF("failed to load driver: %s\n", driverName);
+
    if (configs)
        glx_config_destroy_list(configs);
    if (visuals)
diff --git a/src/glx/dri_glx.c b/src/glx/dri_glx.c
index 0cd7cca..9bfcb0c 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);

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to