tgsi: make dumping work on non-debug builds
authorMarek Olšák <maraeo@gmail.com>
Tue, 4 May 2010 20:43:49 +0000 (22:43 +0200)
committerMarek Olšák <maraeo@gmail.com>
Wed, 5 May 2010 21:33:44 +0000 (23:33 +0200)
src/gallium/auxiliary/tgsi/tgsi_dump.c

index 1ad183b8dd4aad162a3cfacf188999e472e41ea3..35480076edfde6019d9d902d558aed60148598e5 100644 (file)
@@ -56,7 +56,7 @@ dump_ctx_printf(struct dump_ctx *ctx, const char *format, ...)
    va_list ap;
    (void)ctx;
    va_start(ap, format);
-   debug_vprintf(format, ap);
+   _debug_vprintf(format, ap);
    va_end(ap);
 }