From: José Fonseca Date: Wed, 6 Apr 2011 07:25:22 +0000 (+0100) Subject: mesa: Recognize MESA_VERBOSE=all as shortcut for all debug options. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=740282b417caca6c1f223f488ee9a6f9bff81164;p=mesa.git mesa: Recognize MESA_VERBOSE=all as shortcut for all debug options. --- diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index 2a8fd08806c..e7f6be99481 100644 --- a/src/mesa/main/debug.c +++ b/src/mesa/main/debug.c @@ -183,7 +183,7 @@ static void add_debug_flags( const char *debug ) MESA_VERBOSE = 0x0; for (i = 0; i < Elements(debug_opt); i++) { - if (strstr(debug, debug_opt[i].name)) + if (strstr(debug, debug_opt[i].name) || strcmp(debug, "all") == 0) MESA_VERBOSE |= debug_opt[i].flag; }