mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
i965: Remove unused second parameter of brw_print_dirty_count().
Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
ca6b520f3a
commit
650d5de6ea
1 changed files with 4 additions and 4 deletions
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue