util: remove unused debug_print_blob
authorAntónio Monteiro <antonio.fmr.monteiro@gmail.com>
Wed, 2 Nov 2022 00:05:00 +0000 (00:05 +0000)
committerMarge Bot <emma+marge@anholt.net>
Fri, 4 Nov 2022 23:20:02 +0000 (23:20 +0000)
Signed-off-by: António Monteiro <antonio.fmr.monteiro@gmail.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19428>

src/util/u_debug.c
src/util/u_debug.h

index d34b804be0d8bfb751c67d4db6f2f0b981403cbd..eeda1011f4462b5b559cf415b752056f8dd237b9 100644 (file)
@@ -100,24 +100,6 @@ debug_disable_win32_error_dialogs(void)
 }
 #endif /* _WIN32 */
 
-
-#ifdef DEBUG
-void
-debug_print_blob(const char *name, const void *blob, unsigned size)
-{
-   const unsigned *ublob = (const unsigned *)blob;
-   unsigned i;
-
-   debug_printf("%s (%d dwords%s)\n", name, size/4,
-                size%4 ? "... plus a few bytes" : "");
-
-   for (i = 0; i < size/4; i++) {
-      debug_printf("%d:\t%08x\n", i, ublob[i]);
-   }
-}
-#endif
-
-
 static bool
 debug_get_option_should_print(void)
 {
index 805d7977686333222d969e2aeb48cae18032a35f..449e7bf59937cb9357ef1af8fcdbf506704da792 100644 (file)
@@ -165,18 +165,6 @@ debug_printf(const char *format, ...)
 #define debug_vprintf(_format, _ap) ((void)0)
 #endif
 
-
-#ifdef DEBUG
-/**
- * Dump a blob in hex to the same place that debug_printf sends its
- * messages.
- */
-void debug_print_blob( const char *name, const void *blob, unsigned size );
-#else
-#define debug_print_blob(_name, _blob, _size) ((void)0)
-#endif
-
-
 #ifdef _WIN32
 /**
  * Disable Win32 interactive error message boxes.