quieten debug
authorKeith Whitwell <keith@tungstengraphics.com>
Tue, 12 Sep 2006 14:27:57 +0000 (14:27 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Tue, 12 Sep 2006 14:27:57 +0000 (14:27 +0000)
src/mesa/drivers/dri/i965/brw_draw.c
src/mesa/drivers/dri/i965/bufmgr_fake.c

index ef4f110484831e5a6ffb8233eb9949c13de6e23e..f12fb4c7f3e825ba7956750b11594ccaf42d9c1d 100644 (file)
@@ -364,7 +364,7 @@ static GLboolean brw_try_draw_prims( GLcontext *ctx,
    UNLOCK_HARDWARE(intel);
 
    if (!retval)
-      _mesa_printf("%s failed\n", __FUNCTION__);
+      DBG("%s failed\n", __FUNCTION__);
 
    return retval;
 }
index 40e92398836175e8bcd798276c9212aed15a0cd5..8f182f3d8778f933f3f4c40608c1fa25a8a91dcb 100644 (file)
@@ -1067,7 +1067,7 @@ void *bmMapBuffer( struct intel_context *intel,
         assert(intel->locked);
 
         if (!buf->block && !evict_and_alloc_block(intel, buf)) {
-           _mesa_printf("%s: alloc failed\n", __FUNCTION__);
+           DBG("%s: alloc failed\n", __FUNCTION__);
            bm->fail = 1;
            retval = NULL;
         }
@@ -1083,7 +1083,7 @@ void *bmMapBuffer( struct intel_context *intel,
         }
       }
       else {
-              DBG("%s - set buf %d dirty\n", __FUNCTION__, buf->id);
+        DBG("%s - set buf %d dirty\n", __FUNCTION__, buf->id);
         set_dirty(intel, buf);
 
         if (buf->backing_store == 0)
@@ -1227,7 +1227,7 @@ int bmValidateBuffers( struct intel_context *intel )
 
 
    if (retval != 0)
-      _mesa_printf("%s failed\n", __FUNCTION__);
+      DBG("%s failed\n", __FUNCTION__);
 
    return retval;
 }