quieten debug

This commit is contained in:
Keith Whitwell 2006-09-12 14:27:57 +00:00
parent 16a22a5f4a
commit b1cb39d8bd
2 changed files with 4 additions and 4 deletions

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

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