Mesa (master): radeon: use PIPE_DRIVER_QUERY_FLAG_DONT_LIST for perfcounters

Nicolai Hähnle nh at kemper.freedesktop.org
Thu Nov 26 09:58:33 UTC 2015


Module: Mesa
Branch: master
Commit: 6b5268d202acdc69469bd8c1a2f374ccdf414769
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=6b5268d202acdc69469bd8c1a2f374ccdf414769

Author: Nicolai Hähnle <nhaehnle at gmail.com>
Date:   Thu Nov 19 12:14:03 2015 +0100

radeon: use PIPE_DRIVER_QUERY_FLAG_DONT_LIST for perfcounters

Since the query names are not very enlightening, and there are thousands
of them, GALLIUM_HUD=help should only show the first and last query name
for each hardware block.

Reviewed-by: Marek Olšák <marek.olsak at amd.com>

---

 src/gallium/drivers/radeon/r600_perfcounter.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/gallium/drivers/radeon/r600_perfcounter.c b/src/gallium/drivers/radeon/r600_perfcounter.c
index 7ffb6c2..a835aee 100644
--- a/src/gallium/drivers/radeon/r600_perfcounter.c
+++ b/src/gallium/drivers/radeon/r600_perfcounter.c
@@ -547,6 +547,8 @@ int r600_get_perfcounter_info(struct r600_common_screen *screen,
 	info->result_type = PIPE_DRIVER_QUERY_RESULT_TYPE_CUMULATIVE;
 	info->group_id = base_gid + sub / block->num_selectors;
 	info->flags = PIPE_DRIVER_QUERY_FLAG_BATCH;
+	if (sub > 0 && sub + 1 < block->num_selectors * block->num_groups)
+		info->flags |= PIPE_DRIVER_QUERY_FLAG_DONT_LIST;
 	return 1;
 }
 




More information about the mesa-commit mailing list