gallium: Document debug_printf usage.
authorJosé Fonseca <jrfonseca@tungstengraphics.com>
Sat, 8 Mar 2008 16:29:12 +0000 (16:29 +0000)
committerJosé Fonseca <jrfonseca@tungstengraphics.com>
Sat, 8 Mar 2008 17:36:19 +0000 (17:36 +0000)
src/gallium/auxiliary/util/Makefile
src/gallium/include/pipe/p_debug.h

index 906a46d6b4ed4a8829bb4d61b684745a4adf3532..2a3a9380b3b2023079970354353e4b1b81c6bb36 100644 (file)
@@ -7,7 +7,8 @@ C_SOURCES = \
        p_debug.c \
        p_tile.c \
        p_util.c \
-       u_mm.c
+       u_mm.c \
+       u_snprintf.c
 
 include ../../Makefile.template
 
index 2a11627b365ae1a07bb9d77288288b33ef9a00e1..a14a1fc5f6cf6953c839004f176ec3df21bd831d 100644 (file)
@@ -58,8 +58,22 @@ extern "C" {
 #endif
 
 
+/**
+ * Print debug messages.
+ *
+ * A debug message will be printed regardless of the DEBUG/NDEBUG macros.
+ *
+ * The actual channel used to output debug message is platform specific. To 
+ * avoid misformating or truncation, follow these rules of thumb:   
+ * - output whole lines
+ * - avoid outputing large strings (512 bytes is the current maximum length 
+ * that is guaranteed to be printed in all platforms)
+ */
 void debug_printf(const char *format, ...);
 
+/**
+ * @sa debug_printf 
+ */
 void debug_vprintf(const char *format, va_list ap);
 
 void debug_assert_fail(const char *expr, const char *file, unsigned line);