summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-05-07 21:37:32 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-05-07 21:37:32 +0900
commit33cda1e5e57838845ec62714677832f7cdabc5dc (patch)
treefde7eedf034c725fdd8a6889f3fc3f4770490b44 /src/gallium/auxiliary
parent5efd2d59eb19cc44624d3f842d3d1d291876ae7d (diff)
gallium: Fix release build.
pf_sprint_name might be used there too.
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/util/p_debug.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/util/p_debug.c b/src/gallium/auxiliary/util/p_debug.c
index 0f3a99cf83..951dd5a2d4 100644
--- a/src/gallium/auxiliary/util/p_debug.c
+++ b/src/gallium/auxiliary/util/p_debug.c
@@ -325,8 +325,8 @@ debug_dump_flags(const struct debug_named_value *names,
}
-#ifdef DEBUG
static const struct debug_named_value pipe_format_names[] = {
+#ifdef DEBUG
DEBUG_NAMED_VALUE(PIPE_FORMAT_NONE),
DEBUG_NAMED_VALUE(PIPE_FORMAT_A8R8G8B8_UNORM),
DEBUG_NAMED_VALUE(PIPE_FORMAT_X8R8G8B8_UNORM),
@@ -418,20 +418,22 @@ static const struct debug_named_value pipe_format_names[] = {
DEBUG_NAMED_VALUE(PIPE_FORMAT_DXT1_RGBA),
DEBUG_NAMED_VALUE(PIPE_FORMAT_DXT3_RGBA),
DEBUG_NAMED_VALUE(PIPE_FORMAT_DXT5_RGBA),
+#endif
DEBUG_NAMED_VALUE_END
};
+#ifdef DEBUG
void debug_print_format(const char *msg, unsigned fmt )
{
debug_printf("%s: %s\n", msg, debug_dump_enum(pipe_format_names, fmt));
}
+#endif
char *pf_sprint_name( char *str, enum pipe_format format )
{
strcpy( str, debug_dump_enum(pipe_format_names, format) );
return str;
}
-#endif
#ifdef DEBUG