From: Marek Olšák Date: Wed, 21 Jun 2017 17:54:45 +0000 (+0200) Subject: gallium/hud: rename API-thread-busy to main-thread-busy X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7492201c4e7b7b3d6575a43673142d6735cb3977;p=mesa.git gallium/hud: rename API-thread-busy to main-thread-busy Reviewed-by: Timothy Arceri --- diff --git a/src/gallium/auxiliary/hud/hud_context.c b/src/gallium/auxiliary/hud/hud_context.c index cb7ed44659b..922ab969797 100644 --- a/src/gallium/auxiliary/hud/hud_context.c +++ b/src/gallium/auxiliary/hud/hud_context.c @@ -1194,8 +1194,8 @@ hud_parse_env_var(struct hud_context *hud, const char *env) else if (sscanf(name, "cpu%u%s", &i, s) == 1) { hud_cpu_graph_install(pane, i); } - else if (strcmp(name, "API-thread-busy") == 0) { - hud_api_thread_busy_install(pane); + else if (strcmp(name, "main-thread-busy") == 0) { + hud_main_thread_busy_install(pane, name); } #if HAVE_GALLIUM_EXTRA_HUD else if (sscanf(name, "nic-rx-%s", arg_name) == 1) { diff --git a/src/gallium/auxiliary/hud/hud_cpu.c b/src/gallium/auxiliary/hud/hud_cpu.c index 302445d19b7..26f9fa78ee2 100644 --- a/src/gallium/auxiliary/hud/hud_cpu.c +++ b/src/gallium/auxiliary/hud/hud_cpu.c @@ -266,7 +266,7 @@ query_api_thread_busy_status(struct hud_graph *gr) } void -hud_api_thread_busy_install(struct hud_pane *pane) +hud_main_thread_busy_install(struct hud_pane *pane, const char *name) { struct hud_graph *gr; @@ -274,7 +274,7 @@ hud_api_thread_busy_install(struct hud_pane *pane) if (!gr) return; - strcpy(gr->name, "API-thread-busy"); + strcpy(gr->name, name); gr->query_data = CALLOC_STRUCT(thread_info); if (!gr->query_data) { diff --git a/src/gallium/auxiliary/hud/hud_private.h b/src/gallium/auxiliary/hud/hud_private.h index bbc5ec70c8a..bf9962dbab0 100644 --- a/src/gallium/auxiliary/hud/hud_private.h +++ b/src/gallium/auxiliary/hud/hud_private.h @@ -93,7 +93,7 @@ int hud_get_num_cpus(void); void hud_fps_graph_install(struct hud_pane *pane); void hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index); -void hud_api_thread_busy_install(struct hud_pane *pane); +void hud_main_thread_busy_install(struct hud_pane *pane, const char *name); void hud_pipe_query_install(struct hud_batch_query_context **pbq, struct hud_pane *pane, struct pipe_context *pipe, const char *name, unsigned query_type,