gallium/hud: rename API-thread-busy to main-thread-busy
authorMarek Olšák <marek.olsak@amd.com>
Wed, 21 Jun 2017 17:54:45 +0000 (19:54 +0200)
committerMarek Olšák <marek.olsak@amd.com>
Mon, 26 Jun 2017 00:17:03 +0000 (02:17 +0200)
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
src/gallium/auxiliary/hud/hud_context.c
src/gallium/auxiliary/hud/hud_cpu.c
src/gallium/auxiliary/hud/hud_private.h

index cb7ed44..922ab96 100644 (file)
@@ -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) {
index 302445d..26f9fa7 100644 (file)
@@ -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) {
index bbc5ec7..bf9962d 100644 (file)
@@ -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,