summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r--src/gallium/auxiliary/util/p_debug.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/gallium/auxiliary/util/p_debug.c b/src/gallium/auxiliary/util/p_debug.c
index 3f3cf620fe..0f3a99cf83 100644
--- a/src/gallium/auxiliary/util/p_debug.c
+++ b/src/gallium/auxiliary/util/p_debug.c
@@ -325,13 +325,6 @@ debug_dump_flags(const struct debug_named_value *names,
}
-char *pf_sprint_name( char *str, enum pipe_format format )
-{
- strcpy( str, debug_dump_enum(pipe_format_names, fmt) );
- return str;
-}
-
-
#ifdef DEBUG
static const struct debug_named_value pipe_format_names[] = {
DEBUG_NAMED_VALUE(PIPE_FORMAT_NONE),
@@ -432,6 +425,12 @@ void debug_print_format(const char *msg, unsigned fmt )
{
debug_printf("%s: %s\n", msg, debug_dump_enum(pipe_format_names, fmt));
}
+
+char *pf_sprint_name( char *str, enum pipe_format format )
+{
+ strcpy( str, debug_dump_enum(pipe_format_names, format) );
+ return str;
+}
#endif