Skip to content
Snippets Groups Projects
Commit 81b693b3 authored by Simon McVittie's avatar Simon McVittie
Browse files

graphics: Improve debug logging for DRI-style drivers

parent 7175c418
No related branches found
No related tags found
1 merge request!84Enumerate Mesa DRI modules and VA-API drivers
Pipeline #2221 passed
...@@ -2455,7 +2455,9 @@ _srt_get_extra_modules_directory (const gchar *library_search_path, ...@@ -2455,7 +2455,9 @@ _srt_get_extra_modules_directory (const gchar *library_search_path,
} }
ret = g_list_prepend (ret, g_build_filename (dir, "lib", "dri", NULL)); ret = g_list_prepend (ret, g_build_filename (dir, "lib", "dri", NULL));
g_debug ("Looking in lib directory: %s", (const char *) ret->data);
ret = g_list_prepend (ret, g_build_filename (dir, libqual, "dri", NULL)); ret = g_list_prepend (ret, g_build_filename (dir, libqual, "dri", NULL));
g_debug ("Looking in libQUAL directory: %s", (const char *) ret->data);
out: out:
g_free (lib_multiarch); g_free (lib_multiarch);
...@@ -2505,6 +2507,10 @@ _srt_get_modules_from_path (gchar **envp, ...@@ -2505,6 +2507,10 @@ _srt_get_modules_from_path (gchar **envp,
g_return_if_fail (module_directory_path != NULL); g_return_if_fail (module_directory_path != NULL);
g_return_if_fail (drivers_out != NULL); g_return_if_fail (drivers_out != NULL);
g_debug ("Looking for %sdrivers in %s",
is_extra ? "extra " : "",
module_directory_path);
switch (module) switch (module)
{ {
case SRT_GRAPHICS_DRI_MODULE: case SRT_GRAPHICS_DRI_MODULE:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment