Module: Mesa Branch: master Commit: b60a13d5cb3621fda7ce031b3b04d54fa7906eb4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=b60a13d5cb3621fda7ce031b3b04d54fa7906eb4
Author: Erik Faye-Lund <[email protected]> Date: Wed Apr 10 13:40:56 2019 +0200 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 <[email protected]> Reviewed-by: Gurchetan Singh <[email protected]> --- src/gallium/drivers/virgl/virgl_texture.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
