summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-02-07 01:07:49 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-02-07 01:07:49 +0900
commitaf6b12cc76b40c86f3b144a7f5cd3ef1278863d0 (patch)
treefb818975cc5cc66696fe109500ad779c571be956 /src
parent9791d7f64c5a58b9c1bf32d00c71e0e031f54f70 (diff)
gallium: Bring latest fixes.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/pipe/p_debug.h9
-rw-r--r--src/mesa/pipe/util/p_debug.c16
2 files changed, 19 insertions, 6 deletions
diff --git a/src/mesa/pipe/p_debug.h b/src/mesa/pipe/p_debug.h
index b037eba2a3..2a11627b36 100644
--- a/src/mesa/pipe/p_debug.h
+++ b/src/mesa/pipe/p_debug.h
@@ -38,6 +38,10 @@
#ifndef P_DEBUG_H_
#define P_DEBUG_H_
+
+#include <stdarg.h>
+
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -55,8 +59,12 @@ extern "C" {
void debug_printf(const char *format, ...);
+
+void debug_vprintf(const char *format, va_list ap);
+
void debug_assert_fail(const char *expr, const char *file, unsigned line);
+
/** Assert macro */
#ifdef DEBUG
#define debug_assert(expr) ((expr) ? (void)0 : debug_assert_fail(#expr, __FILE__, __LINE__))
@@ -66,7 +74,6 @@ void debug_assert_fail(const char *expr, const char *file, unsigned line);
#ifdef assert
-#warning Standard C Library assert macro usage detected.
#undef assert
#endif
#define assert(expr) debug_assert(expr)
diff --git a/src/mesa/pipe/util/p_debug.c b/src/mesa/pipe/util/p_debug.c
index 9303c970cc..b9607a6ba7 100644
--- a/src/mesa/pipe/util/p_debug.c
+++ b/src/mesa/pipe/util/p_debug.c
@@ -40,16 +40,22 @@
#include "pipe/p_compiler.h"
-void debug_printf(const char *format, ...)
+void debug_vprintf(const char *format, va_list ap)
{
- va_list ap;
- va_start( ap, format );
#ifdef WIN32
EngDebugPrint("Gallium3D: ", (PCHAR)format, ap);
#else
vfprintf(stderr, format, ap);
#endif
- va_end( ap );
+}
+
+
+void debug_printf(const char *format, ...)
+{
+ va_list ap;
+ va_start(ap, format);
+ debug_vprintf(format, ap);
+ va_end(ap);
}
@@ -65,6 +71,6 @@ static INLINE void debug_abort(void)
void debug_assert_fail(const char *expr, const char *file, unsigned line)
{
- debug_printf("%s:%i: Assertion `%s' failed.");
+ debug_printf("%s:%i: Assertion `%s' failed.\n", file, line, expr);
debug_abort();
}