llvmpipe: added some debug/info code

This commit is contained in:
Brian Paul 2009-12-09 16:32:32 -07:00
parent ad3c16c127
commit 96689d451a
1 changed files with 15 additions and 0 deletions

View File

@ -40,6 +40,7 @@
/**
* Begin the rasterization phase.
* Map the framebuffer surfaces. Initialize the 'rast' state.
@ -555,8 +556,22 @@ lp_rasterize_bins( struct lp_rasterizer *rast,
const struct pipe_framebuffer_state *fb,
bool write_depth )
{
boolean debug = false;
LP_DBG(DEBUG_SETUP, "%s\n", __FUNCTION__);
if (debug) {
unsigned x, y;
printf("rasterize bins:\n");
printf(" data size: %u\n", lp_bin_data_size(bins));
for (y = 0; y < bins->tiles_y; y++) {
for (x = 0; x < bins->tiles_x; x++) {
printf(" bin %u, %u size: %u\n", x, y,
lp_bin_cmd_size(bins, x, y));
}
}
}
lp_rast_begin( rast,
fb->cbufs[0],
fb->zsbuf,