Mesa (master): virgl: replace fprintf-call with debug_printf

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Aug 28 12:14:17 UTC 2018


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

Author: Erik Faye-Lund <erik.faye-lund at collabora.com>
Date:   Mon Aug 20 12:48:51 2018 +0200

virgl: replace fprintf-call with debug_printf

This is the only direct call-site for fprintf in virgl; all other
call-sites call debug_printf instead. So let's follow in style here.

Signed-off-by: Erik Faye-Lund <erik.faye-lund at collabora.com>
Reviewed-By: Gert Wollny <gert.wollny at collabora.com>

---

 src/gallium/drivers/virgl/virgl_encode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/virgl/virgl_encode.c b/src/gallium/drivers/virgl/virgl_encode.c
index c09eb5a638..d56484e0dd 100644
--- a/src/gallium/drivers/virgl/virgl_encode.c
+++ b/src/gallium/drivers/virgl/virgl_encode.c
@@ -261,7 +261,7 @@ int virgl_encode_shader_state(struct virgl_context *ctx,
 
       bret = tgsi_dump_str(tokens, TGSI_DUMP_FLOAT_AS_HEX, str, str_total_size);
       if (bret == false) {
-         fprintf(stderr, "Failed to translate shader in available space - trying again\n");
+         debug_printf("Failed to translate shader in available space - trying again\n");
          old_size = str_total_size;
          str_total_size = 65536 * ++retry_size;
          str = REALLOC(str, old_size, str_total_size);




More information about the mesa-commit mailing list