Lines Matching defs:graph
385 /* draw horizontal lines inside the graph */
764 * Set the maximum value for the Y axis of the graph.
765 * This scales the graph accordingly.
774 /* The following code determines the max_value in the graph as well as
863 * again needlessly in case the pane has more than one graph.
916 * Add a graph to an existing pane.
990 hud_graph_destroy(struct hud_graph *graph, struct pipe_context *pipe)
992 FREE(graph->vertices);
993 if (graph->free_query_data)
994 graph->free_query_data(graph->query_data, pipe);
995 if (graph->fd)
996 fclose(graph->fd);
997 FREE(graph);
1117 * the text of the Y axis labels on the graph will start overlapping.
1203 * The GALLIUM_HUD_PERIOD env var sets the graph update rate.
1243 /* Add a graph. */
1434 struct hud_graph *graph;
1435 graph = list_entry(pane->graph_list.prev, struct hud_graph, head);
1436 strncpy(graph->name, s, sizeof(graph->name)-1);
1437 graph->name[sizeof(graph->name)-1] = 0;
1543 puts(" 'w[value]' sets width of the graph pixels.");
1544 puts(" 'h[value]' sets height of the graph in pixels.");
1546 puts(" If the graph needs to draw values higher than");
1549 puts(" the Y axis to match the highest value still visible in the graph.");
1791 struct hud_graph *graph, *graph_tmp;
1797 LIST_FOR_EACH_ENTRY_SAFE(graph, graph_tmp, &pane->graph_list, head) {
1798 list_del(&graph->head);
1799 hud_graph_destroy(graph, pipe);