diff options
author | Kenneth Graunke <[email protected]> | 2013-06-08 08:46:14 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-06-10 10:58:29 -0700 |
commit | 650d5de6eab2e8dc76d33c07c147f1a03888d4b1 (patch) | |
tree | 11a7ae754aa97ca96e4e2a58a0a406c7ca7c773a | |
parent | ca6b520f3ae16e0c6334534e24c22231ddb64d54 (diff) |
i965: Remove unused second parameter of brw_print_dirty_count().
Reviewed-by: Eric Anholt <[email protected]>
Signed-off-by: Kenneth Graunke <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_state_upload.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_state_upload.c b/src/mesa/drivers/dri/i965/brw_state_upload.c index fa0e6028e4b..500d639e7cb 100644 --- a/src/mesa/drivers/dri/i965/brw_state_upload.c +++ b/src/mesa/drivers/dri/i965/brw_state_upload.c @@ -414,7 +414,7 @@ brw_update_dirty_count(struct dirty_bit_map *bit_map, int32_t bits) } static void -brw_print_dirty_count(struct dirty_bit_map *bit_map, int32_t bits) +brw_print_dirty_count(struct dirty_bit_map *bit_map) { int i; @@ -513,9 +513,9 @@ void brw_upload_state(struct brw_context *brw) brw_update_dirty_count(brw_bits, state->brw); brw_update_dirty_count(cache_bits, state->cache); if (dirty_count++ % 1000 == 0) { - brw_print_dirty_count(mesa_bits, state->mesa); - brw_print_dirty_count(brw_bits, state->brw); - brw_print_dirty_count(cache_bits, state->cache); + brw_print_dirty_count(mesa_bits); + brw_print_dirty_count(brw_bits); + brw_print_dirty_count(cache_bits); fprintf(stderr, "\n"); } } |