Mesa (master): st/mesa: remove leftover printfs from ReadPixels

Marek Olšák mareko at kemper.freedesktop.org
Thu Mar 28 17:18:01 UTC 2013


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

Author: Marek Olšák <maraeo at gmail.com>
Date:   Thu Mar 28 14:51:28 2013 +0100

st/mesa: remove leftover printfs from ReadPixels

Oops, I thought I had removed all debugging code.

---

 src/mesa/state_tracker/st_cb_readpixels.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/mesa/state_tracker/st_cb_readpixels.c b/src/mesa/state_tracker/st_cb_readpixels.c
index bfed988..9fab113 100644
--- a/src/mesa/state_tracker/st_cb_readpixels.c
+++ b/src/mesa/state_tracker/st_cb_readpixels.c
@@ -133,7 +133,6 @@ st_readpixels(struct gl_context *ctx, GLint x, GLint y,
        !screen->is_format_supported(screen, src_format, src->target,
                                     src->nr_samples,
                                     PIPE_BIND_SAMPLER_VIEW)) {
-      printf("fallback: src format unsupported %s\n", util_format_short_name(src_format));
       goto fallback;
    }
 
@@ -147,8 +146,6 @@ st_readpixels(struct gl_context *ctx, GLint x, GLint y,
    dst_format = st_choose_matching_format(screen, bind, format, type,
                                           pack->SwapBytes);
    if (dst_format == PIPE_FORMAT_NONE) {
-      printf("fallback: no matching format for %s, %s\n",
-             _mesa_lookup_enum_by_nr(format), _mesa_lookup_enum_by_nr(type));
       goto fallback;
    }
 




More information about the mesa-commit mailing list