From: Erik Faye-Lund Date: Wed, 10 Apr 2019 11:40:56 +0000 (+0200) Subject: virgl: use debug_printf instead of fprintf X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b60a13d5cb3621fda7ce031b3b04d54fa7906eb4;p=mesa.git virgl: use debug_printf instead of fprintf While we're at it, prefix the string with "VIRGL: ", to match similar code elsewhere in virgl. Signed-off-by: Erik Faye-Lund Reviewed-by: Gurchetan Singh --- diff --git a/src/gallium/drivers/virgl/virgl_texture.c b/src/gallium/drivers/virgl/virgl_texture.c index 75ee059fe76..3871f265d4a 100644 --- a/src/gallium/drivers/virgl/virgl_texture.c +++ b/src/gallium/drivers/virgl/virgl_texture.c @@ -66,7 +66,9 @@ static unsigned temp_bind(unsigned orig) unsigned warn = ~(PIPE_BIND_RENDER_TARGET | PIPE_BIND_DEPTH_STENCIL | PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_DISPLAY_TARGET); if (orig & warn) - fprintf(stderr, "Waring, possibly unhandled bind: %x\n", orig & warn); + debug_printf("VIRGL: Warning, possibly unhandled bind: %x\n", + orig & warn); + return orig & (PIPE_BIND_DEPTH_STENCIL | PIPE_BIND_RENDER_TARGET); }