summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/hud
diff options
context:
space:
mode:
authorNicolai Hähnle <nhaehnle@gmail.com>2015-11-19 12:13:43 +0100
committerNicolai Hähnle <nicolai.haehnle@amd.com>2015-11-26 10:57:43 +0100
commitf36d9857cd35300d23c6be092feb6cd8c8a0e290 (patch)
tree665cda8367aa3456130686559c963a89ec6e5f8d /src/gallium/auxiliary/hud
parent80a16dece614ef3763e2817d10a45462367af8b2 (diff)
downloadexternal_mesa3d-f36d9857cd35300d23c6be092feb6cd8c8a0e290.zip
external_mesa3d-f36d9857cd35300d23c6be092feb6cd8c8a0e290.tar.gz
external_mesa3d-f36d9857cd35300d23c6be092feb6cd8c8a0e290.tar.bz2
gallium: add PIPE_DRIVER_QUERY_FLAG_DONT_LIST
This allows the driver to give a hint to the HUD so that GALLIUM_HUD=help is less spammy. Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src/gallium/auxiliary/hud')
-rw-r--r--src/gallium/auxiliary/hud/hud_context.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/hud/hud_context.c b/src/gallium/auxiliary/hud/hud_context.c
index efceb85..c5c3332 100644
--- a/src/gallium/auxiliary/hud/hud_context.c
+++ b/src/gallium/auxiliary/hud/hud_context.c
@@ -1127,12 +1127,20 @@ print_help(struct pipe_screen *screen)
}
if (screen->get_driver_query_info){
+ boolean skipping = false;
struct pipe_driver_query_info info;
num_queries = screen->get_driver_query_info(screen, 0, NULL);
for (i = 0; i < num_queries; i++){
screen->get_driver_query_info(screen, i, &info);
- printf(" %s\n", info.name);
+ if (info.flags & PIPE_DRIVER_QUERY_FLAG_DONT_LIST) {
+ if (!skipping)
+ puts(" ...");
+ skipping = true;
+ } else {
+ printf(" %s\n", info.name);
+ skipping = false;
+ }
}
}