i965: Make INTEL_DEBUG=state ignore state flags with a count of 1.
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 3 Dec 2014 07:44:30 +0000 (23:44 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Sat, 3 Jan 2015 09:45:15 +0000 (01:45 -0800)
There are too many state flags to fit in one terminal screen, even with
a very tall terminal.  Everything is flagged once, so a value of 1 means
that it hasn't ever happened again, and thus isn't terribly interesting.

Skipping those makes it easier to see the interesting values.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/drivers/dri/i965/brw_state_upload.c

index a579781a8517ab862a12beecf8fefbf48b796092..7a25ef541bfcb3af134964559aec4a4528b9d57d 100644 (file)
@@ -542,8 +542,10 @@ static void
 brw_print_dirty_count(struct dirty_bit_map *bit_map)
 {
    for (int i = 0; bit_map[i].bit != 0; i++) {
-      fprintf(stderr, "0x%016lx: %12d (%s)\n",
-             bit_map[i].bit, bit_map[i].count, bit_map[i].name);
+      if (bit_map[i].count > 1) {
+         fprintf(stderr, "0x%016lx: %12d (%s)\n",
+                 bit_map[i].bit, bit_map[i].count, bit_map[i].name);
+      }
    }
 }