diff options
author | Marek Olšák <[email protected]> | 2010-05-04 22:43:49 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-05-05 23:33:44 +0200 |
commit | a8bb49562938e94459f398a1733a76eb9c690f6c (patch) | |
tree | 63552a025e8dc89f298bc3224033323984ac2e83 /src/gallium | |
parent | 0ad541a684ca55e883a0bcde9ab8b5d73806269a (diff) |
tgsi: make dumping work on non-debug builds
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_dump.c b/src/gallium/auxiliary/tgsi/tgsi_dump.c index 1ad183b8dd4..35480076edf 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_dump.c +++ b/src/gallium/auxiliary/tgsi/tgsi_dump.c @@ -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); } |