Mesa (master): radeon: protect fbo allocation message with debug

Alex Deucher agd5f at kemper.freedesktop.org
Fri Dec 18 16:05:13 UTC 2009


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

Author: Alex Deucher <alexdeucher at gmail.com>
Date:   Fri Dec 18 10:57:37 2009 -0500

radeon: protect fbo allocation message with debug

fixes fdo bug 25708

Signed-off-by: Alex Deucher <alexdeucher at gmail.com>

---

 src/mesa/drivers/dri/radeon/radeon_fbo.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/mesa/drivers/dri/radeon/radeon_fbo.c b/src/mesa/drivers/dri/radeon/radeon_fbo.c
index fc21069..a536436 100644
--- a/src/mesa/drivers/dri/radeon/radeon_fbo.c
+++ b/src/mesa/drivers/dri/radeon/radeon_fbo.c
@@ -166,8 +166,9 @@ radeon_alloc_renderbuffer_storage(GLcontext * ctx, struct gl_renderbuffer *rb,
      uint32_t size;
      uint32_t pitch = ((cpp * width + 63) & ~63) / cpp;
 
-     fprintf(stderr,"Allocating %d x %d radeon RBO (pitch %d)\n", width,
-	  height, pitch);
+     if (RADEON_DEBUG & RADEON_MEMORY)
+	     fprintf(stderr,"Allocating %d x %d radeon RBO (pitch %d)\n", width,
+		     height, pitch);
 
      size = pitch * height * cpp;
      rrb->pitch = pitch * cpp;




More information about the mesa-commit mailing list