Mesa (master): virgl: use debug_printf instead of fprintf

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Apr 11 08:09:13 UTC 2019


Module: Mesa
Branch: master
Commit: b60a13d5cb3621fda7ce031b3b04d54fa7906eb4
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b60a13d5cb3621fda7ce031b3b04d54fa7906eb4

Author: Erik Faye-Lund <erik.faye-lund at collabora.com>
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 <erik.faye-lund at collabora.com>
Reviewed-by: Gurchetan Singh <gurchetansingh at chromium.org>

---

 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);
 }
 




More information about the mesa-commit mailing list