diff options
author | Keith Whitwell <[email protected]> | 2009-10-26 00:20:33 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-10-26 00:20:33 +0000 |
commit | 09c231f84a20a306a173b60c82484ce1f9331edf (patch) | |
tree | 1faaa20dc34e1d2b019f14c8ea0accd5ce558808 /src/gallium/drivers/i965/brw_state_debug.c | |
parent | 590949553f737902008dea020420311e2085aa1a (diff) |
i965g: still working on compilation
Diffstat (limited to 'src/gallium/drivers/i965/brw_state_debug.c')
-rw-r--r-- | src/gallium/drivers/i965/brw_state_debug.c | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_state_debug.c b/src/gallium/drivers/i965/brw_state_debug.c index 22cea4b7d85..cc4744dc166 100644 --- a/src/gallium/drivers/i965/brw_state_debug.c +++ b/src/gallium/drivers/i965/brw_state_debug.c @@ -109,8 +109,25 @@ brw_print_dirty_count(struct dirty_bit_map *bit_map, int32_t bits) if (bit_map[i].bit == 0) return; - fprintf(stderr, "0x%08x: %12d (%s)\n", + debug_printf("0x%08x: %12d (%s)\n", bit_map[i].bit, bit_map[i].count, bit_map[i].name); } } +void +brw_update_dirty_counts( unsigned mesa, + unsigned brw, + unsigned cache ) +{ + static int dirty_count = 0; + + brw_update_dirty_count(mesa_bits, mesa); + brw_update_dirty_count(brw_bits, brw); + brw_update_dirty_count(cache_bits, cache); + if (dirty_count++ % 1000 == 0) { + brw_print_dirty_count(mesa_bits, mesa); + brw_print_dirty_count(brw_bits, brw); + brw_print_dirty_count(cache_bits, cache); + debug_printf("\n"); + } +} |