Mesa (mesa_7_5_branch): util: _debug_printf should print even when DEBUG is not defined

Keith Whitwell keithw at kemper.freedesktop.org
Wed Jul 29 11:48:13 UTC 2009


Module: Mesa
Branch: mesa_7_5_branch
Commit: 4d99e1453552847c2a67f723adc2764443c995d7
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4d99e1453552847c2a67f723adc2764443c995d7

Author: Keith Whitwell <keithw at vmware.com>
Date:   Thu Jul 16 17:51:02 2009 +0100

util: _debug_printf should print even when DEBUG is not defined

The leading underscore is meaningful...  This function is used by
_warning and _error functions as well as the more common
debug_printf().

debug_printf (without underscore) gets turned off when DEBUG is
disabled, but warning/error messages still use this function to get
their message out.
(cherry picked from commit 0ac879dca797360570543d5bd0fd64f8fb8e566e)

---

 src/gallium/auxiliary/util/u_debug.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_debug.c b/src/gallium/auxiliary/util/u_debug.c
index a5ca0b7..96d400c 100644
--- a/src/gallium/auxiliary/util/u_debug.c
+++ b/src/gallium/auxiliary/util/u_debug.c
@@ -143,11 +143,9 @@ void _debug_vprintf(const char *format, va_list ap)
 #elif defined(PIPE_SUBSYSTEM_WINDOWS_MINIPORT)
    /* TODO */
 #else /* !PIPE_SUBSYSTEM_WINDOWS */
-#ifdef DEBUG
    fflush(stdout);
    vfprintf(stderr, format, ap);
 #endif
-#endif
 }
 
 




More information about the mesa-commit mailing list