radeon-gallium: Remove BO validation debug.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Mon, 18 May 2009 16:47:37 +0000 (09:47 -0700)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Mon, 18 May 2009 16:51:10 +0000 (09:51 -0700)
It appears that that area of code "just works" much like classic Mesa's
version, so might as well not waste scrollback on it.

src/gallium/winsys/drm/radeon/core/radeon_r300.c

index d257e016933bd4cba5a7520a069d1176d6ffee3a..65366e242cfe27a964bd8bfdcb5234659056cd54 100644 (file)
@@ -57,10 +57,6 @@ static boolean radeon_r300_validate(struct r300_winsys* winsys)
         (struct radeon_winsys_priv*)winsys->radeon_winsys;
     struct radeon_cs_space_check* sc = priv->sc;
 
-    debug_printf("Validation count: %d\n", priv->bo_count);
-    for (i = 0; i < priv->bo_count; i++) {
-        debug_printf("BO %d: %p rd: %d wd: %d\n", i, sc[i].bo, sc[i].read_domains, sc[i].write_domain);
-    }
     retval = radeon_cs_space_check(priv->cs, sc, priv->bo_count);
 
     if (retval == RADEON_CS_SPACE_OP_TO_BIG) {