egl: Mention if swrast is being forced
[mesa.git] / src / egl / main / egldriver.c
index 0d8919aa0e1cce345a6780db81de2e974ae2b05e..526de02e53b66dc26eff6400533ad1c84008ac8a 100644 (file)
@@ -92,6 +92,8 @@ _eglMatchDriver(_EGLDisplay *disp)
    /* set options */
    disp->Options.ForceSoftware =
       env_var_as_boolean("LIBGL_ALWAYS_SOFTWARE", false);
+   if (disp->Options.ForceSoftware)
+      _eglLog(_EGL_DEBUG, "Found 'LIBGL_ALWAYS_SOFTWARE' set, will use a CPU renderer");
 
    best_drv = _eglMatchAndInitialize(disp);
    if (!best_drv && !disp->Options.ForceSoftware) {