OSDN Git Service

win32: don't prepend all debug with gallium3d
authorKeith Whitwell <keith@tungstengraphics.com>
Mon, 3 Mar 2008 16:49:38 +0000 (17:49 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Mon, 3 Mar 2008 16:50:10 +0000 (17:50 +0100)
src/gallium/auxiliary/util/p_debug.c

index b9607a6..0da3b66 100644 (file)
@@ -43,7 +43,7 @@
 void debug_vprintf(const char *format, va_list ap)
 {
 #ifdef WIN32
-   EngDebugPrint("Gallium3D: ", (PCHAR)format, ap);
+   EngDebugPrint("", (PCHAR)format, ap);
 #else
    vfprintf(stderr, format, ap);
 #endif