gallium/util: do not use debug_print_format
authorErik Faye-Lund <erik.faye-lund@collabora.com>
Wed, 19 Feb 2020 11:42:38 +0000 (12:42 +0100)
committerMarge Bot <eric+marge@anholt.net>
Mon, 24 Feb 2020 23:07:57 +0000 (23:07 +0000)
These are the only two places we use this macro, and it's no longer very
gallium-specific. So let's get rid of this, and just use debug_printf
and util_format_name directly instead.

Reviewed-by: Eric Anholt <eric@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3901>

src/gallium/auxiliary/util/u_debug_gallium.c
src/gallium/auxiliary/util/u_debug_gallium.h
src/gallium/auxiliary/util/u_pack_color.h

index 63a1e69c0d4121d84310db869a0ad60aeb00f682..24f0e9be1652dda63358bf336c96eac4fcf58a9f 100644 (file)
 
 #ifdef DEBUG
 
-void
-debug_print_format(const char *msg, unsigned fmt)
-{
-   debug_printf("%s: %s\n", msg, util_format_name(fmt));
-}
-
-
 /**
  * Print PIPE_TRANSFER_x flags with a message.
  */
index df4e919c803d5118fc743bcecb6d5c431684eda5..f5593406ad64740b030cb6ca7b102c562acaf4d4 100644 (file)
 extern "C" {
 #endif
 
-#ifdef DEBUG
-void debug_print_format(const char *msg, unsigned fmt);
-#else
-#define debug_print_format(_msg, _fmt) ((void)0)
-#endif
-
 #ifdef DEBUG
 
 void
index 6eea87ef38c34a68010554515af68bd274dbbb3c..a395fbc805448ba3f2cc94fb4d58b5a92bdee9eb 100644 (file)
@@ -37,7 +37,6 @@
 
 #include "pipe/p_compiler.h"
 #include "pipe/p_format.h"
-#include "util/u_debug_gallium.h"
 #include "util/format/u_format.h"
 #include "util/u_math.h"
 
@@ -463,7 +462,8 @@ util_pack_mask_z(enum pipe_format format, uint32_t z)
    case PIPE_FORMAT_S8_UINT:
       return 0;
    default:
-      debug_print_format("gallium: unhandled format in util_pack_mask_z()", format);
+      debug_printf("gallium: unhandled format in util_pack_mask_z(): %s\n",
+                   util_format_name(format));
       assert(0);
       return 0;
    }
@@ -559,7 +559,8 @@ util_pack_z(enum pipe_format format, double z)
       /* this case can get it via util_pack_z_stencil() */
       return 0;
    default:
-      debug_print_format("gallium: unhandled format in util_pack_z()", format);
+      debug_printf("gallium: unhandled format in util_pack_z(): %s\n",
+                   util_format_name(format));
       assert(0);
       return 0;
    }