From 3cb994afca4733e75936e6d92f107e87ce019b04 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Fri, 6 Jul 2012 10:36:55 +0100 Subject: [PATCH] galahad: Use debug_printf. stderr is not visible on windows. --- src/gallium/drivers/galahad/glhd_context.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/galahad/glhd_context.h b/src/gallium/drivers/galahad/glhd_context.h index 4e71753ac37..58ced834505 100644 --- a/src/gallium/drivers/galahad/glhd_context.h +++ b/src/gallium/drivers/galahad/glhd_context.h @@ -33,6 +33,8 @@ #include "pipe/p_state.h" #include "pipe/p_context.h" +#include "util/u_debug.h" + struct galahad_context { struct pipe_context base; /**< base class */ @@ -53,9 +55,9 @@ galahad_context(struct pipe_context *pipe) #define glhd_warn(...) \ do { \ - fprintf(stderr, "galahad: %s: ", __FUNCTION__); \ - fprintf(stderr, __VA_ARGS__); \ - fprintf(stderr, "\n"); \ + debug_printf("galahad: %s: ", __FUNCTION__); \ + debug_printf(__VA_ARGS__); \ + debug_printf("\n"); \ } while (0) #define glhd_error(...) \ -- 2.30.2