summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_context.h
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2010-03-28 18:38:30 +0200
committerMarek Olšák <maraeo@gmail.com>2010-03-29 03:33:28 +0200
commit1c2912ee7a47170bbaa8a71d4af729d0caf17f04 (patch)
tree249de606f78865683634b08a4908c87553090881 /src/gallium/drivers/r300/r300_context.h
parent5f1699e9d5e8e5e67a560482f73e559304a8ae43 (diff)
r300g: print configurable debugging info on non-debug builds
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.h')
-rw-r--r--src/gallium/drivers/r300/r300_context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_context.h b/src/gallium/drivers/r300/r300_context.h
index eb9178a265..0a82484e89 100644
--- a/src/gallium/drivers/r300/r300_context.h
+++ b/src/gallium/drivers/r300/r300_context.h
@@ -409,7 +409,7 @@ static INLINE void CTX_DBG(struct r300_context * ctx, unsigned flags,
if (CTX_DBG_ON(ctx, flags)) {
va_list va;
va_start(va, fmt);
- debug_vprintf(fmt, va);
+ vfprintf(stderr, fmt, va);
va_end(va);
}
}