gallium/hud: add a simple HUD view that only draws text
[mesa.git] / src / gallium / auxiliary / hud / hud_context.c
1 /**************************************************************************
2 *
3 * Copyright 2013 Marek Olšák <maraeo@gmail.com>
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL THE AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 /* This head-up display module can draw transparent graphs on top of what
29 * the app is rendering, visualizing various data like framerate, cpu load,
30 * performance counters, etc. It can be hook up into any state tracker.
31 *
32 * The HUD is controlled with the GALLIUM_HUD environment variable.
33 * Set GALLIUM_HUD=help for more info.
34 */
35
36 #include <inttypes.h>
37 #include <signal.h>
38 #include <stdio.h>
39
40 #include "hud/hud_context.h"
41 #include "hud/hud_private.h"
42
43 #include "cso_cache/cso_context.h"
44 #include "util/u_draw_quad.h"
45 #include "util/u_format.h"
46 #include "util/u_inlines.h"
47 #include "util/u_memory.h"
48 #include "util/u_math.h"
49 #include "util/u_sampler.h"
50 #include "util/u_simple_shaders.h"
51 #include "util/u_string.h"
52 #include "util/u_upload_mgr.h"
53 #include "tgsi/tgsi_text.h"
54 #include "tgsi/tgsi_dump.h"
55
56 /* Control the visibility of all HUD contexts */
57 static boolean huds_visible = TRUE;
58
59
60 #ifdef PIPE_OS_UNIX
61 static void
62 signal_visible_handler(int sig, siginfo_t *siginfo, void *context)
63 {
64 huds_visible = !huds_visible;
65 }
66 #endif
67
68 static void
69 hud_draw_colored_prims(struct hud_context *hud, unsigned prim,
70 float *buffer, unsigned num_vertices,
71 float r, float g, float b, float a,
72 int xoffset, int yoffset, float yscale)
73 {
74 struct cso_context *cso = hud->cso;
75 unsigned size = num_vertices * hud->color_prims.vbuf.stride;
76
77 /* If a recording context is inactive, don't draw anything. */
78 if (size > hud->color_prims.buffer_size)
79 return;
80
81 memcpy(hud->color_prims.vertices, buffer, size);
82
83 hud->constants.color[0] = r;
84 hud->constants.color[1] = g;
85 hud->constants.color[2] = b;
86 hud->constants.color[3] = a;
87 hud->constants.translate[0] = (float) xoffset;
88 hud->constants.translate[1] = (float) yoffset;
89 hud->constants.scale[0] = 1;
90 hud->constants.scale[1] = yscale;
91 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
92
93 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso),
94 1, &hud->color_prims.vbuf);
95 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
96 cso_draw_arrays(cso, prim, 0, num_vertices);
97
98 hud->color_prims.vertices += size / sizeof(float);
99 hud->color_prims.vbuf.buffer_offset += size;
100 hud->color_prims.buffer_size -= size;
101 }
102
103 static void
104 hud_draw_colored_quad(struct hud_context *hud, unsigned prim,
105 unsigned x1, unsigned y1, unsigned x2, unsigned y2,
106 float r, float g, float b, float a)
107 {
108 float buffer[] = {
109 (float) x1, (float) y1,
110 (float) x1, (float) y2,
111 (float) x2, (float) y2,
112 (float) x2, (float) y1,
113 };
114
115 hud_draw_colored_prims(hud, prim, buffer, 4, r, g, b, a, 0, 0, 1);
116 }
117
118 static void
119 hud_draw_background_quad(struct hud_context *hud,
120 unsigned x1, unsigned y1, unsigned x2, unsigned y2)
121 {
122 float *vertices = hud->bg.vertices + hud->bg.num_vertices*2;
123 unsigned num = 0;
124
125 assert(hud->bg.num_vertices + 4 <= hud->bg.max_num_vertices);
126
127 vertices[num++] = (float) x1;
128 vertices[num++] = (float) y1;
129
130 vertices[num++] = (float) x1;
131 vertices[num++] = (float) y2;
132
133 vertices[num++] = (float) x2;
134 vertices[num++] = (float) y2;
135
136 vertices[num++] = (float) x2;
137 vertices[num++] = (float) y1;
138
139 hud->bg.num_vertices += num/2;
140 }
141
142 static void
143 hud_draw_string(struct hud_context *hud, unsigned x, unsigned y,
144 const char *str, ...)
145 {
146 char buf[256];
147 char *s = buf;
148 float *vertices = hud->text.vertices + hud->text.num_vertices*4;
149 unsigned num = 0;
150
151 va_list ap;
152 va_start(ap, str);
153 util_vsnprintf(buf, sizeof(buf), str, ap);
154 va_end(ap);
155
156 if (!*s)
157 return;
158
159 hud_draw_background_quad(hud,
160 x, y,
161 x + strlen(buf)*hud->font.glyph_width,
162 y + hud->font.glyph_height);
163
164 while (*s) {
165 unsigned x1 = x;
166 unsigned y1 = y;
167 unsigned x2 = x + hud->font.glyph_width;
168 unsigned y2 = y + hud->font.glyph_height;
169 unsigned tx1 = (*s % 16) * hud->font.glyph_width;
170 unsigned ty1 = (*s / 16) * hud->font.glyph_height;
171 unsigned tx2 = tx1 + hud->font.glyph_width;
172 unsigned ty2 = ty1 + hud->font.glyph_height;
173
174 if (*s == ' ') {
175 x += hud->font.glyph_width;
176 s++;
177 continue;
178 }
179
180 assert(hud->text.num_vertices + num/4 + 4 <= hud->text.max_num_vertices);
181
182 vertices[num++] = (float) x1;
183 vertices[num++] = (float) y1;
184 vertices[num++] = (float) tx1;
185 vertices[num++] = (float) ty1;
186
187 vertices[num++] = (float) x1;
188 vertices[num++] = (float) y2;
189 vertices[num++] = (float) tx1;
190 vertices[num++] = (float) ty2;
191
192 vertices[num++] = (float) x2;
193 vertices[num++] = (float) y2;
194 vertices[num++] = (float) tx2;
195 vertices[num++] = (float) ty2;
196
197 vertices[num++] = (float) x2;
198 vertices[num++] = (float) y1;
199 vertices[num++] = (float) tx2;
200 vertices[num++] = (float) ty1;
201
202 x += hud->font.glyph_width;
203 s++;
204 }
205
206 hud->text.num_vertices += num/4;
207 }
208
209 static void
210 number_to_human_readable(double num, enum pipe_driver_query_type type,
211 char *out)
212 {
213 static const char *byte_units[] =
214 {" B", " KB", " MB", " GB", " TB", " PB", " EB"};
215 static const char *metric_units[] =
216 {"", " k", " M", " G", " T", " P", " E"};
217 static const char *time_units[] =
218 {" us", " ms", " s"}; /* based on microseconds */
219 static const char *hz_units[] =
220 {" Hz", " KHz", " MHz", " GHz"};
221 static const char *percent_units[] = {"%"};
222 static const char *dbm_units[] = {" (-dBm)"};
223 static const char *temperature_units[] = {" C"};
224 static const char *volt_units[] = {" mV", " V"};
225 static const char *amp_units[] = {" mA", " A"};
226 static const char *watt_units[] = {" mW", " W"};
227 static const char *float_units[] = {""};
228
229 const char **units;
230 unsigned max_unit;
231 double divisor = (type == PIPE_DRIVER_QUERY_TYPE_BYTES) ? 1024 : 1000;
232 unsigned unit = 0;
233 double d = num;
234
235 switch (type) {
236 case PIPE_DRIVER_QUERY_TYPE_MICROSECONDS:
237 max_unit = ARRAY_SIZE(time_units)-1;
238 units = time_units;
239 break;
240 case PIPE_DRIVER_QUERY_TYPE_VOLTS:
241 max_unit = ARRAY_SIZE(volt_units)-1;
242 units = volt_units;
243 break;
244 case PIPE_DRIVER_QUERY_TYPE_AMPS:
245 max_unit = ARRAY_SIZE(amp_units)-1;
246 units = amp_units;
247 break;
248 case PIPE_DRIVER_QUERY_TYPE_DBM:
249 max_unit = ARRAY_SIZE(dbm_units)-1;
250 units = dbm_units;
251 break;
252 case PIPE_DRIVER_QUERY_TYPE_TEMPERATURE:
253 max_unit = ARRAY_SIZE(temperature_units)-1;
254 units = temperature_units;
255 break;
256 case PIPE_DRIVER_QUERY_TYPE_FLOAT:
257 max_unit = ARRAY_SIZE(float_units)-1;
258 units = float_units;
259 break;
260 case PIPE_DRIVER_QUERY_TYPE_PERCENTAGE:
261 max_unit = ARRAY_SIZE(percent_units)-1;
262 units = percent_units;
263 break;
264 case PIPE_DRIVER_QUERY_TYPE_BYTES:
265 max_unit = ARRAY_SIZE(byte_units)-1;
266 units = byte_units;
267 break;
268 case PIPE_DRIVER_QUERY_TYPE_HZ:
269 max_unit = ARRAY_SIZE(hz_units)-1;
270 units = hz_units;
271 break;
272 case PIPE_DRIVER_QUERY_TYPE_WATTS:
273 max_unit = ARRAY_SIZE(watt_units)-1;
274 units = watt_units;
275 break;
276 default:
277 max_unit = ARRAY_SIZE(metric_units)-1;
278 units = metric_units;
279 }
280
281 while (d > divisor && unit < max_unit) {
282 d /= divisor;
283 unit++;
284 }
285
286 /* Round to 3 decimal places so as not to print trailing zeros. */
287 if (d*1000 != (int)(d*1000))
288 d = round(d * 1000) / 1000;
289
290 /* Show at least 4 digits with at most 3 decimal places, but not zeros. */
291 if (d >= 1000 || d == (int)d)
292 sprintf(out, "%.0f%s", d, units[unit]);
293 else if (d >= 100 || d*10 == (int)(d*10))
294 sprintf(out, "%.1f%s", d, units[unit]);
295 else if (d >= 10 || d*100 == (int)(d*100))
296 sprintf(out, "%.2f%s", d, units[unit]);
297 else
298 sprintf(out, "%.3f%s", d, units[unit]);
299 }
300
301 static void
302 hud_draw_graph_line_strip(struct hud_context *hud, const struct hud_graph *gr,
303 unsigned xoffset, unsigned yoffset, float yscale)
304 {
305 if (gr->num_vertices <= 1)
306 return;
307
308 assert(gr->index <= gr->num_vertices);
309
310 hud_draw_colored_prims(hud, PIPE_PRIM_LINE_STRIP,
311 gr->vertices, gr->index,
312 gr->color[0], gr->color[1], gr->color[2], 1,
313 xoffset + (gr->pane->max_num_vertices - gr->index - 1) * 2 - 1,
314 yoffset, yscale);
315
316 if (gr->num_vertices <= gr->index)
317 return;
318
319 hud_draw_colored_prims(hud, PIPE_PRIM_LINE_STRIP,
320 gr->vertices + gr->index*2,
321 gr->num_vertices - gr->index,
322 gr->color[0], gr->color[1], gr->color[2], 1,
323 xoffset - gr->index*2 - 1, yoffset, yscale);
324 }
325
326 static void
327 hud_pane_accumulate_vertices(struct hud_context *hud,
328 const struct hud_pane *pane)
329 {
330 struct hud_graph *gr;
331 float *line_verts = hud->whitelines.vertices + hud->whitelines.num_vertices*2;
332 unsigned i, num = 0;
333 char str[32];
334 const unsigned last_line = pane->last_line;
335
336 /* draw background */
337 hud_draw_background_quad(hud,
338 pane->x1, pane->y1,
339 pane->x2, pane->y2);
340
341 /* draw numbers on the right-hand side */
342 for (i = 0; i <= last_line; i++) {
343 unsigned x = pane->x2 + 2;
344 unsigned y = pane->inner_y1 +
345 pane->inner_height * (last_line - i) / last_line -
346 hud->font.glyph_height / 2;
347
348 number_to_human_readable(pane->max_value * i / last_line,
349 pane->type, str);
350 hud_draw_string(hud, x, y, "%s", str);
351 }
352
353 /* draw info below the pane */
354 i = 0;
355 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
356 unsigned x = pane->x1 + 2;
357 unsigned y = pane->y2 + 2 + i*hud->font.glyph_height;
358
359 number_to_human_readable(gr->current_value, pane->type, str);
360 hud_draw_string(hud, x, y, " %s: %s", gr->name, str);
361 i++;
362 }
363
364 /* draw border */
365 assert(hud->whitelines.num_vertices + num/2 + 8 <= hud->whitelines.max_num_vertices);
366 line_verts[num++] = (float) pane->x1;
367 line_verts[num++] = (float) pane->y1;
368 line_verts[num++] = (float) pane->x2;
369 line_verts[num++] = (float) pane->y1;
370
371 line_verts[num++] = (float) pane->x2;
372 line_verts[num++] = (float) pane->y1;
373 line_verts[num++] = (float) pane->x2;
374 line_verts[num++] = (float) pane->y2;
375
376 line_verts[num++] = (float) pane->x1;
377 line_verts[num++] = (float) pane->y2;
378 line_verts[num++] = (float) pane->x2;
379 line_verts[num++] = (float) pane->y2;
380
381 line_verts[num++] = (float) pane->x1;
382 line_verts[num++] = (float) pane->y1;
383 line_verts[num++] = (float) pane->x1;
384 line_verts[num++] = (float) pane->y2;
385
386 /* draw horizontal lines inside the graph */
387 for (i = 0; i <= last_line; i++) {
388 float y = round((pane->max_value * i / (double)last_line) *
389 pane->yscale + pane->inner_y2);
390
391 assert(hud->whitelines.num_vertices + num/2 + 2 <= hud->whitelines.max_num_vertices);
392 line_verts[num++] = pane->x1;
393 line_verts[num++] = y;
394 line_verts[num++] = pane->x2;
395 line_verts[num++] = y;
396 }
397
398 hud->whitelines.num_vertices += num/2;
399 }
400
401 static void
402 hud_pane_accumulate_vertices_simple(struct hud_context *hud,
403 const struct hud_pane *pane)
404 {
405 struct hud_graph *gr;
406 unsigned i;
407 char str[32];
408
409 /* draw info below the pane */
410 i = 0;
411 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
412 unsigned x = pane->x1;
413 unsigned y = pane->y_simple + i*hud->font.glyph_height;
414
415 number_to_human_readable(gr->current_value, pane->type, str);
416 hud_draw_string(hud, x, y, "%s: %s", gr->name, str);
417 i++;
418 }
419 }
420
421 static void
422 hud_pane_draw_colored_objects(struct hud_context *hud,
423 const struct hud_pane *pane)
424 {
425 struct hud_graph *gr;
426 unsigned i;
427
428 /* draw colored quads below the pane */
429 i = 0;
430 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
431 unsigned x = pane->x1 + 2;
432 unsigned y = pane->y2 + 2 + i*hud->font.glyph_height;
433
434 hud_draw_colored_quad(hud, PIPE_PRIM_QUADS, x + 1, y + 1, x + 12, y + 13,
435 gr->color[0], gr->color[1], gr->color[2], 1);
436 i++;
437 }
438
439 /* draw the line strips */
440 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
441 hud_draw_graph_line_strip(hud, gr, pane->inner_x1, pane->inner_y2, pane->yscale);
442 }
443 }
444
445 static void
446 hud_prepare_vertices(struct hud_context *hud, struct vertex_queue *v,
447 unsigned num_vertices, unsigned stride)
448 {
449 v->num_vertices = 0;
450 v->max_num_vertices = num_vertices;
451 v->vbuf.stride = stride;
452 v->buffer_size = stride * num_vertices;
453 }
454
455 /**
456 * Draw the HUD to the texture \p tex.
457 * The texture is usually the back buffer being displayed.
458 */
459 static void
460 hud_draw_results(struct hud_context *hud, struct pipe_resource *tex)
461 {
462 struct cso_context *cso = hud->cso;
463 struct pipe_context *pipe = hud->pipe;
464 struct pipe_framebuffer_state fb;
465 struct pipe_surface surf_templ, *surf;
466 struct pipe_viewport_state viewport;
467 const struct pipe_sampler_state *sampler_states[] =
468 { &hud->font_sampler_state };
469 struct hud_pane *pane;
470
471 if (!huds_visible)
472 return;
473
474 hud->fb_width = tex->width0;
475 hud->fb_height = tex->height0;
476 hud->constants.two_div_fb_width = 2.0f / hud->fb_width;
477 hud->constants.two_div_fb_height = 2.0f / hud->fb_height;
478
479 cso_save_state(cso, (CSO_BIT_FRAMEBUFFER |
480 CSO_BIT_SAMPLE_MASK |
481 CSO_BIT_MIN_SAMPLES |
482 CSO_BIT_BLEND |
483 CSO_BIT_DEPTH_STENCIL_ALPHA |
484 CSO_BIT_FRAGMENT_SHADER |
485 CSO_BIT_FRAGMENT_SAMPLER_VIEWS |
486 CSO_BIT_FRAGMENT_SAMPLERS |
487 CSO_BIT_RASTERIZER |
488 CSO_BIT_VIEWPORT |
489 CSO_BIT_STREAM_OUTPUTS |
490 CSO_BIT_GEOMETRY_SHADER |
491 CSO_BIT_TESSCTRL_SHADER |
492 CSO_BIT_TESSEVAL_SHADER |
493 CSO_BIT_VERTEX_SHADER |
494 CSO_BIT_VERTEX_ELEMENTS |
495 CSO_BIT_AUX_VERTEX_BUFFER_SLOT |
496 CSO_BIT_PAUSE_QUERIES |
497 CSO_BIT_RENDER_CONDITION));
498 cso_save_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
499
500 /* set states */
501 memset(&surf_templ, 0, sizeof(surf_templ));
502 surf_templ.format = tex->format;
503
504 /* Without this, AA lines look thinner if they are between 2 pixels
505 * because the alpha is 0.5 on both pixels. (it's ugly)
506 *
507 * sRGB makes the width of all AA lines look the same.
508 */
509 if (hud->has_srgb) {
510 enum pipe_format srgb_format = util_format_srgb(tex->format);
511
512 if (srgb_format != PIPE_FORMAT_NONE)
513 surf_templ.format = srgb_format;
514 }
515 surf = pipe->create_surface(pipe, tex, &surf_templ);
516
517 memset(&fb, 0, sizeof(fb));
518 fb.nr_cbufs = 1;
519 fb.cbufs[0] = surf;
520 fb.zsbuf = NULL;
521 fb.width = hud->fb_width;
522 fb.height = hud->fb_height;
523
524 viewport.scale[0] = 0.5f * hud->fb_width;
525 viewport.scale[1] = 0.5f * hud->fb_height;
526 viewport.scale[2] = 1.0f;
527 viewport.translate[0] = 0.5f * hud->fb_width;
528 viewport.translate[1] = 0.5f * hud->fb_height;
529 viewport.translate[2] = 0.0f;
530
531 cso_set_framebuffer(cso, &fb);
532 cso_set_sample_mask(cso, ~0);
533 cso_set_min_samples(cso, 1);
534 cso_set_depth_stencil_alpha(cso, &hud->dsa);
535 cso_set_rasterizer(cso, &hud->rasterizer);
536 cso_set_viewport(cso, &viewport);
537 cso_set_stream_outputs(cso, 0, NULL, NULL);
538 cso_set_tessctrl_shader_handle(cso, NULL);
539 cso_set_tesseval_shader_handle(cso, NULL);
540 cso_set_geometry_shader_handle(cso, NULL);
541 cso_set_vertex_shader_handle(cso, hud->vs);
542 cso_set_vertex_elements(cso, 2, hud->velems);
543 cso_set_render_condition(cso, NULL, FALSE, 0);
544 cso_set_sampler_views(cso, PIPE_SHADER_FRAGMENT, 1,
545 &hud->font_sampler_view);
546 cso_set_samplers(cso, PIPE_SHADER_FRAGMENT, 1, sampler_states);
547 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
548
549 /* draw accumulated vertices for background quads */
550 cso_set_blend(cso, &hud->alpha_blend);
551 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
552
553 if (hud->bg.num_vertices) {
554 hud->constants.color[0] = 0;
555 hud->constants.color[1] = 0;
556 hud->constants.color[2] = 0;
557 hud->constants.color[3] = 0.666f;
558 hud->constants.translate[0] = 0;
559 hud->constants.translate[1] = 0;
560 hud->constants.scale[0] = 1;
561 hud->constants.scale[1] = 1;
562
563 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
564 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
565 &hud->bg.vbuf);
566 cso_draw_arrays(cso, PIPE_PRIM_QUADS, 0, hud->bg.num_vertices);
567 }
568 pipe_resource_reference(&hud->bg.vbuf.buffer.resource, NULL);
569
570 /* draw accumulated vertices for text */
571 if (hud->text.num_vertices) {
572 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
573 &hud->text.vbuf);
574 cso_set_fragment_shader_handle(hud->cso, hud->fs_text);
575 cso_draw_arrays(cso, PIPE_PRIM_QUADS, 0, hud->text.num_vertices);
576 }
577 pipe_resource_reference(&hud->text.vbuf.buffer.resource, NULL);
578
579 if (hud->simple) {
580 cso_restore_state(cso);
581 cso_restore_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
582
583 pipe_surface_reference(&surf, NULL);
584 return;
585 }
586
587 /* draw accumulated vertices for white lines */
588 cso_set_blend(cso, &hud->no_blend);
589
590 hud->constants.color[0] = 1;
591 hud->constants.color[1] = 1;
592 hud->constants.color[2] = 1;
593 hud->constants.color[3] = 1;
594 hud->constants.translate[0] = 0;
595 hud->constants.translate[1] = 0;
596 hud->constants.scale[0] = 1;
597 hud->constants.scale[1] = 1;
598 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
599
600 if (hud->whitelines.num_vertices) {
601 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
602 &hud->whitelines.vbuf);
603 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
604 cso_draw_arrays(cso, PIPE_PRIM_LINES, 0, hud->whitelines.num_vertices);
605 }
606 pipe_resource_reference(&hud->whitelines.vbuf.buffer.resource, NULL);
607
608 /* draw the rest */
609 cso_set_blend(cso, &hud->alpha_blend);
610 cso_set_rasterizer(cso, &hud->rasterizer_aa_lines);
611 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
612 if (pane)
613 hud_pane_draw_colored_objects(hud, pane);
614 }
615
616 cso_restore_state(cso);
617 cso_restore_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
618
619 pipe_surface_reference(&surf, NULL);
620 }
621
622 static void
623 hud_start_queries(struct hud_context *hud, struct pipe_context *pipe)
624 {
625 struct hud_pane *pane;
626 struct hud_graph *gr;
627
628 /* Start queries. */
629 hud_batch_query_begin(hud->batch_query, pipe);
630
631 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
632 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
633 if (gr->begin_query)
634 gr->begin_query(gr, pipe);
635 }
636 }
637 }
638
639 /* Stop queries, query results, and record vertices for charts. */
640 static void
641 hud_stop_queries(struct hud_context *hud, struct pipe_context *pipe)
642 {
643 struct hud_pane *pane;
644 struct hud_graph *gr, *next;
645
646 /* prepare vertex buffers */
647 hud_prepare_vertices(hud, &hud->bg, 16 * 256, 2 * sizeof(float));
648 hud_prepare_vertices(hud, &hud->whitelines, 4 * 256, 2 * sizeof(float));
649 hud_prepare_vertices(hud, &hud->text, 16 * 1024, 4 * sizeof(float));
650 hud_prepare_vertices(hud, &hud->color_prims, 32 * 1024, 2 * sizeof(float));
651
652 /* Allocate everything once and divide the storage into 3 portions
653 * manually, because u_upload_alloc can unmap memory from previous calls.
654 */
655 u_upload_alloc(pipe->stream_uploader, 0,
656 hud->bg.buffer_size +
657 hud->whitelines.buffer_size +
658 hud->text.buffer_size +
659 hud->color_prims.buffer_size,
660 16, &hud->bg.vbuf.buffer_offset, &hud->bg.vbuf.buffer.resource,
661 (void**)&hud->bg.vertices);
662 if (!hud->bg.vertices)
663 return;
664
665 pipe_resource_reference(&hud->whitelines.vbuf.buffer.resource, hud->bg.vbuf.buffer.resource);
666 pipe_resource_reference(&hud->text.vbuf.buffer.resource, hud->bg.vbuf.buffer.resource);
667 pipe_resource_reference(&hud->color_prims.vbuf.buffer.resource, hud->bg.vbuf.buffer.resource);
668
669 hud->whitelines.vbuf.buffer_offset = hud->bg.vbuf.buffer_offset +
670 hud->bg.buffer_size;
671 hud->whitelines.vertices = hud->bg.vertices +
672 hud->bg.buffer_size / sizeof(float);
673
674 hud->text.vbuf.buffer_offset = hud->whitelines.vbuf.buffer_offset +
675 hud->whitelines.buffer_size;
676 hud->text.vertices = hud->whitelines.vertices +
677 hud->whitelines.buffer_size / sizeof(float);
678
679 hud->color_prims.vbuf.buffer_offset = hud->text.vbuf.buffer_offset +
680 hud->text.buffer_size;
681 hud->color_prims.vertices = hud->text.vertices +
682 hud->text.buffer_size / sizeof(float);
683
684 /* prepare all graphs */
685 hud_batch_query_update(hud->batch_query, pipe);
686
687 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
688 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
689 gr->query_new_value(gr, pipe);
690 }
691
692 if (pane->sort_items) {
693 LIST_FOR_EACH_ENTRY_SAFE(gr, next, &pane->graph_list, head) {
694 /* ignore the last one */
695 if (&gr->head == pane->graph_list.prev)
696 continue;
697
698 /* This is an incremental bubble sort, because we only do one pass
699 * per frame. It will eventually reach an equilibrium.
700 */
701 if (gr->current_value <
702 LIST_ENTRY(struct hud_graph, next, head)->current_value) {
703 LIST_DEL(&gr->head);
704 LIST_ADD(&gr->head, &next->head);
705 }
706 }
707 }
708
709 if (hud->simple)
710 hud_pane_accumulate_vertices_simple(hud, pane);
711 else
712 hud_pane_accumulate_vertices(hud, pane);
713 }
714
715 /* unmap the uploader's vertex buffer before drawing */
716 u_upload_unmap(pipe->stream_uploader);
717 }
718
719 /**
720 * Record queries and draw the HUD. The "cso" parameter acts as a filter.
721 * If "cso" is not the recording context, recording is skipped.
722 * If "cso" is not the drawing context, drawing is skipped.
723 * cso == NULL ignores the filter.
724 */
725 void
726 hud_run(struct hud_context *hud, struct cso_context *cso,
727 struct pipe_resource *tex)
728 {
729 struct pipe_context *pipe = cso ? cso_get_pipe_context(cso) : NULL;
730
731 /* If "cso" is the recording or drawing context or NULL, execute
732 * the operation. Otherwise, don't do anything.
733 */
734 if (hud->record_pipe && (!pipe || pipe == hud->record_pipe))
735 hud_stop_queries(hud, hud->record_pipe);
736
737 if (hud->cso && (!cso || cso == hud->cso))
738 hud_draw_results(hud, tex);
739
740 if (hud->record_pipe && (!pipe || pipe == hud->record_pipe))
741 hud_start_queries(hud, hud->record_pipe);
742 }
743
744 /**
745 * Record query results and assemble vertices if "pipe" is a recording but
746 * not drawing context.
747 */
748 void
749 hud_record_only(struct hud_context *hud, struct pipe_context *pipe)
750 {
751 assert(pipe);
752
753 /* If it's a drawing context, only hud_run() records query results. */
754 if (pipe == hud->pipe || pipe != hud->record_pipe)
755 return;
756
757 hud_stop_queries(hud, hud->record_pipe);
758 hud_start_queries(hud, hud->record_pipe);
759 }
760
761 static void
762 fixup_bytes(enum pipe_driver_query_type type, int position, uint64_t *exp10)
763 {
764 if (type == PIPE_DRIVER_QUERY_TYPE_BYTES && position % 3 == 0)
765 *exp10 = (*exp10 / 1000) * 1024;
766 }
767
768 /**
769 * Set the maximum value for the Y axis of the graph.
770 * This scales the graph accordingly.
771 */
772 void
773 hud_pane_set_max_value(struct hud_pane *pane, uint64_t value)
774 {
775 double leftmost_digit;
776 uint64_t exp10;
777 int i;
778
779 /* The following code determines the max_value in the graph as well as
780 * how many describing lines are drawn. The max_value is rounded up,
781 * so that all drawn numbers are rounded for readability.
782 * We want to print multiples of a simple number instead of multiples of
783 * hard-to-read numbers like 1.753.
784 */
785
786 /* Find the left-most digit. Make sure exp10 * 10 and fixup_bytes doesn't
787 * overflow. (11 is safe) */
788 exp10 = 1;
789 for (i = 0; exp10 <= UINT64_MAX / 11 && exp10 * 9 < value; i++) {
790 exp10 *= 10;
791 fixup_bytes(pane->type, i + 1, &exp10);
792 }
793
794 leftmost_digit = DIV_ROUND_UP(value, exp10);
795
796 /* Round 9 to 10. */
797 if (leftmost_digit == 9) {
798 leftmost_digit = 1;
799 exp10 *= 10;
800 fixup_bytes(pane->type, i + 1, &exp10);
801 }
802
803 switch ((unsigned)leftmost_digit) {
804 case 1:
805 pane->last_line = 5; /* lines in +1/5 increments */
806 break;
807 case 2:
808 pane->last_line = 8; /* lines in +1/4 increments. */
809 break;
810 case 3:
811 case 4:
812 pane->last_line = leftmost_digit * 2; /* lines in +1/2 increments */
813 break;
814 case 5:
815 case 6:
816 case 7:
817 case 8:
818 pane->last_line = leftmost_digit; /* lines in +1 increments */
819 break;
820 default:
821 assert(0);
822 }
823
824 /* Truncate {3,4} to {2.5, 3.5} if possible. */
825 for (i = 3; i <= 4; i++) {
826 if (leftmost_digit == i && value <= (i - 0.5) * exp10) {
827 leftmost_digit = i - 0.5;
828 pane->last_line = leftmost_digit * 2; /* lines in +1/2 increments. */
829 }
830 }
831
832 /* Truncate 2 to a multiple of 0.2 in (1, 1.6] if possible. */
833 if (leftmost_digit == 2) {
834 for (i = 1; i <= 3; i++) {
835 if (value <= (1 + i*0.2) * exp10) {
836 leftmost_digit = 1 + i*0.2;
837 pane->last_line = 5 + i; /* lines in +1/5 increments. */
838 break;
839 }
840 }
841 }
842
843 pane->max_value = leftmost_digit * exp10;
844 pane->yscale = -(int)pane->inner_height / (float)pane->max_value;
845 }
846
847 static void
848 hud_pane_update_dyn_ceiling(struct hud_graph *gr, struct hud_pane *pane)
849 {
850 unsigned i;
851 float tmp = 0.0f;
852
853 if (pane->dyn_ceil_last_ran != gr->index) {
854 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
855 for (i = 0; i < gr->num_vertices; ++i) {
856 tmp = gr->vertices[i * 2 + 1] > tmp ?
857 gr->vertices[i * 2 + 1] : tmp;
858 }
859 }
860
861 /* Avoid setting it lower than the initial starting height. */
862 tmp = tmp > pane->initial_max_value ? tmp : pane->initial_max_value;
863 hud_pane_set_max_value(pane, tmp);
864 }
865
866 /*
867 * Mark this adjustment run so we could avoid repeating a full update
868 * again needlessly in case the pane has more than one graph.
869 */
870 pane->dyn_ceil_last_ran = gr->index;
871 }
872
873 static struct hud_pane *
874 hud_pane_create(struct hud_context *hud,
875 unsigned x1, unsigned y1, unsigned x2, unsigned y2,
876 unsigned y_simple,
877 unsigned period, uint64_t max_value, uint64_t ceiling,
878 boolean dyn_ceiling, boolean sort_items)
879 {
880 struct hud_pane *pane = CALLOC_STRUCT(hud_pane);
881
882 if (!pane)
883 return NULL;
884
885 pane->hud = hud;
886 pane->x1 = x1;
887 pane->y1 = y1;
888 pane->x2 = x2;
889 pane->y2 = y2;
890 pane->y_simple = y_simple;
891 pane->inner_x1 = x1 + 1;
892 pane->inner_x2 = x2 - 1;
893 pane->inner_y1 = y1 + 1;
894 pane->inner_y2 = y2 - 1;
895 pane->inner_width = pane->inner_x2 - pane->inner_x1;
896 pane->inner_height = pane->inner_y2 - pane->inner_y1;
897 pane->period = period;
898 pane->max_num_vertices = (x2 - x1 + 2) / 2;
899 pane->ceiling = ceiling;
900 pane->dyn_ceiling = dyn_ceiling;
901 pane->dyn_ceil_last_ran = 0;
902 pane->sort_items = sort_items;
903 pane->initial_max_value = max_value;
904 hud_pane_set_max_value(pane, max_value);
905 LIST_INITHEAD(&pane->graph_list);
906 return pane;
907 }
908
909 /* replace '-' with a space */
910 static void
911 strip_hyphens(char *s)
912 {
913 while (*s) {
914 if (*s == '-')
915 *s = ' ';
916 s++;
917 }
918 }
919
920 /**
921 * Add a graph to an existing pane.
922 * One pane can contain multiple graphs over each other.
923 */
924 void
925 hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr)
926 {
927 static const float colors[][3] = {
928 {0, 1, 0},
929 {1, 0, 0},
930 {0, 1, 1},
931 {1, 0, 1},
932 {1, 1, 0},
933 {0.5, 1, 0.5},
934 {1, 0.5, 0.5},
935 {0.5, 1, 1},
936 {1, 0.5, 1},
937 {1, 1, 0.5},
938 {0, 0.5, 0},
939 {0.5, 0, 0},
940 {0, 0.5, 0.5},
941 {0.5, 0, 0.5},
942 {0.5, 0.5, 0},
943 };
944 unsigned color = pane->next_color % ARRAY_SIZE(colors);
945
946 strip_hyphens(gr->name);
947
948 gr->vertices = MALLOC(pane->max_num_vertices * sizeof(float) * 2);
949 gr->color[0] = colors[color][0];
950 gr->color[1] = colors[color][1];
951 gr->color[2] = colors[color][2];
952 gr->pane = pane;
953 LIST_ADDTAIL(&gr->head, &pane->graph_list);
954 pane->num_graphs++;
955 pane->next_color++;
956 }
957
958 void
959 hud_graph_add_value(struct hud_graph *gr, double value)
960 {
961 gr->current_value = value;
962 value = value > gr->pane->ceiling ? gr->pane->ceiling : value;
963
964 if (gr->fd) {
965 if (fabs(value - lround(value)) > FLT_EPSILON) {
966 fprintf(gr->fd, "%f\n", value);
967 }
968 else {
969 fprintf(gr->fd, "%" PRIu64 "\n", (uint64_t) lround(value));
970 }
971 }
972
973 if (gr->index == gr->pane->max_num_vertices) {
974 gr->vertices[0] = 0;
975 gr->vertices[1] = gr->vertices[(gr->index-1)*2+1];
976 gr->index = 1;
977 }
978 gr->vertices[(gr->index)*2+0] = (float) (gr->index * 2);
979 gr->vertices[(gr->index)*2+1] = (float) value;
980 gr->index++;
981
982 if (gr->num_vertices < gr->pane->max_num_vertices) {
983 gr->num_vertices++;
984 }
985
986 if (gr->pane->dyn_ceiling == true) {
987 hud_pane_update_dyn_ceiling(gr, gr->pane);
988 }
989 if (value > gr->pane->max_value) {
990 hud_pane_set_max_value(gr->pane, value);
991 }
992 }
993
994 static void
995 hud_graph_destroy(struct hud_graph *graph, struct pipe_context *pipe)
996 {
997 FREE(graph->vertices);
998 if (graph->free_query_data)
999 graph->free_query_data(graph->query_data, pipe);
1000 if (graph->fd)
1001 fclose(graph->fd);
1002 FREE(graph);
1003 }
1004
1005 static void strcat_without_spaces(char *dst, const char *src)
1006 {
1007 dst += strlen(dst);
1008 while (*src) {
1009 if (*src == ' ')
1010 *dst++ = '_';
1011 else
1012 *dst++ = *src;
1013 src++;
1014 }
1015 *dst = 0;
1016 }
1017
1018
1019 #ifdef PIPE_OS_WINDOWS
1020 #define W_OK 0
1021 static int
1022 access(const char *pathname, int mode)
1023 {
1024 /* no-op */
1025 return 0;
1026 }
1027
1028 #define PATH_SEP "\\"
1029
1030 #else
1031
1032 #define PATH_SEP "/"
1033
1034 #endif
1035
1036
1037 /**
1038 * If the GALLIUM_HUD_DUMP_DIR env var is set, we'll write the raw
1039 * HUD values to files at ${GALLIUM_HUD_DUMP_DIR}/<stat> where <stat>
1040 * is a HUD variable such as "fps", or "cpu"
1041 */
1042 static void
1043 hud_graph_set_dump_file(struct hud_graph *gr)
1044 {
1045 const char *hud_dump_dir = getenv("GALLIUM_HUD_DUMP_DIR");
1046
1047 if (hud_dump_dir && access(hud_dump_dir, W_OK) == 0) {
1048 char *dump_file = malloc(strlen(hud_dump_dir) + sizeof(PATH_SEP)
1049 + sizeof(gr->name));
1050 if (dump_file) {
1051 strcpy(dump_file, hud_dump_dir);
1052 strcat(dump_file, PATH_SEP);
1053 strcat_without_spaces(dump_file, gr->name);
1054 gr->fd = fopen(dump_file, "w+");
1055 if (gr->fd) {
1056 /* flush output after each line is written */
1057 setvbuf(gr->fd, NULL, _IOLBF, 0);
1058 }
1059 free(dump_file);
1060 }
1061 }
1062 }
1063
1064 /**
1065 * Read a string from the environment variable.
1066 * The separators "+", ",", ":", and ";" terminate the string.
1067 * Return the number of read characters.
1068 */
1069 static int
1070 parse_string(const char *s, char *out)
1071 {
1072 int i;
1073
1074 for (i = 0; *s && *s != '+' && *s != ',' && *s != ':' && *s != ';' && *s != '=';
1075 s++, out++, i++)
1076 *out = *s;
1077
1078 *out = 0;
1079
1080 if (*s && !i) {
1081 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) while "
1082 "parsing a string\n", *s, *s);
1083 fflush(stderr);
1084 }
1085
1086 return i;
1087 }
1088
1089 static char *
1090 read_pane_settings(char *str, unsigned * const x, unsigned * const y,
1091 unsigned * const width, unsigned * const height,
1092 uint64_t * const ceiling, boolean * const dyn_ceiling,
1093 boolean *reset_colors, boolean *sort_items)
1094 {
1095 char *ret = str;
1096 unsigned tmp;
1097
1098 while (*str == '.') {
1099 ++str;
1100 switch (*str) {
1101 case 'x':
1102 ++str;
1103 *x = strtoul(str, &ret, 10);
1104 str = ret;
1105 break;
1106
1107 case 'y':
1108 ++str;
1109 *y = strtoul(str, &ret, 10);
1110 str = ret;
1111 break;
1112
1113 case 'w':
1114 ++str;
1115 tmp = strtoul(str, &ret, 10);
1116 *width = tmp > 80 ? tmp : 80; /* 80 is chosen arbitrarily */
1117 str = ret;
1118 break;
1119
1120 /*
1121 * Prevent setting height to less than 50. If the height is set to less,
1122 * the text of the Y axis labels on the graph will start overlapping.
1123 */
1124 case 'h':
1125 ++str;
1126 tmp = strtoul(str, &ret, 10);
1127 *height = tmp > 50 ? tmp : 50;
1128 str = ret;
1129 break;
1130
1131 case 'c':
1132 ++str;
1133 tmp = strtoul(str, &ret, 10);
1134 *ceiling = tmp > 10 ? tmp : 10;
1135 str = ret;
1136 break;
1137
1138 case 'd':
1139 ++str;
1140 ret = str;
1141 *dyn_ceiling = true;
1142 break;
1143
1144 case 'r':
1145 ++str;
1146 ret = str;
1147 *reset_colors = true;
1148 break;
1149
1150 case 's':
1151 ++str;
1152 ret = str;
1153 *sort_items = true;
1154 break;
1155
1156 default:
1157 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *str);
1158 fflush(stderr);
1159 }
1160
1161 }
1162
1163 return ret;
1164 }
1165
1166 static boolean
1167 has_occlusion_query(struct pipe_screen *screen)
1168 {
1169 return screen->get_param(screen, PIPE_CAP_OCCLUSION_QUERY) != 0;
1170 }
1171
1172 static boolean
1173 has_streamout(struct pipe_screen *screen)
1174 {
1175 return screen->get_param(screen, PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS) != 0;
1176 }
1177
1178 static boolean
1179 has_pipeline_stats_query(struct pipe_screen *screen)
1180 {
1181 return screen->get_param(screen, PIPE_CAP_QUERY_PIPELINE_STATISTICS) != 0;
1182 }
1183
1184 static void
1185 hud_parse_env_var(struct hud_context *hud, struct pipe_screen *screen,
1186 const char *env)
1187 {
1188 unsigned num, i;
1189 char name_a[256], s[256];
1190 char *name;
1191 struct hud_pane *pane = NULL;
1192 unsigned x = 10, y = 10, y_simple = 10;
1193 unsigned width = 251, height = 100;
1194 unsigned period = 500 * 1000; /* default period (1/2 second) */
1195 uint64_t ceiling = UINT64_MAX;
1196 unsigned column_width = 251;
1197 boolean dyn_ceiling = false;
1198 boolean reset_colors = false;
1199 boolean sort_items = false;
1200 const char *period_env;
1201
1202 if (util_strncmp(env, "simple,", 7) == 0) {
1203 hud->simple = true;
1204 env += 7;
1205 }
1206
1207 /*
1208 * The GALLIUM_HUD_PERIOD env var sets the graph update rate.
1209 * The env var is in seconds (a float).
1210 * Zero means update after every frame.
1211 */
1212 period_env = getenv("GALLIUM_HUD_PERIOD");
1213 if (period_env) {
1214 float p = (float) atof(period_env);
1215 if (p >= 0.0f) {
1216 period = (unsigned) (p * 1000 * 1000);
1217 }
1218 }
1219
1220 while ((num = parse_string(env, name_a)) != 0) {
1221 env += num;
1222
1223 /* check for explicit location, size and etc. settings */
1224 name = read_pane_settings(name_a, &x, &y, &width, &height, &ceiling,
1225 &dyn_ceiling, &reset_colors, &sort_items);
1226
1227 /*
1228 * Keep track of overall column width to avoid pane overlapping in case
1229 * later we create a new column while the bottom pane in the current
1230 * column is less wide than the rest of the panes in it.
1231 */
1232 column_width = width > column_width ? width : column_width;
1233
1234 if (!pane) {
1235 pane = hud_pane_create(hud, x, y, x + width, y + height, y_simple,
1236 period, 10, ceiling, dyn_ceiling, sort_items);
1237 if (!pane)
1238 return;
1239 }
1240
1241 if (reset_colors) {
1242 pane->next_color = 0;
1243 reset_colors = false;
1244 }
1245
1246 /* Add a graph. */
1247 #if defined(HAVE_GALLIUM_EXTRA_HUD) || defined(HAVE_LIBSENSORS)
1248 char arg_name[64];
1249 #endif
1250 /* IF YOU CHANGE THIS, UPDATE print_help! */
1251 if (strcmp(name, "fps") == 0) {
1252 hud_fps_graph_install(pane);
1253 }
1254 else if (strcmp(name, "cpu") == 0) {
1255 hud_cpu_graph_install(pane, ALL_CPUS);
1256 }
1257 else if (sscanf(name, "cpu%u%s", &i, s) == 1) {
1258 hud_cpu_graph_install(pane, i);
1259 }
1260 else if (strcmp(name, "API-thread-busy") == 0) {
1261 hud_thread_busy_install(pane, name, false);
1262 }
1263 else if (strcmp(name, "API-thread-offloaded-slots") == 0) {
1264 hud_thread_counter_install(pane, name, HUD_COUNTER_OFFLOADED);
1265 }
1266 else if (strcmp(name, "API-thread-direct-slots") == 0) {
1267 hud_thread_counter_install(pane, name, HUD_COUNTER_DIRECT);
1268 }
1269 else if (strcmp(name, "API-thread-num-syncs") == 0) {
1270 hud_thread_counter_install(pane, name, HUD_COUNTER_SYNCS);
1271 }
1272 else if (strcmp(name, "main-thread-busy") == 0) {
1273 hud_thread_busy_install(pane, name, true);
1274 }
1275 #ifdef HAVE_GALLIUM_EXTRA_HUD
1276 else if (sscanf(name, "nic-rx-%s", arg_name) == 1) {
1277 hud_nic_graph_install(pane, arg_name, NIC_DIRECTION_RX);
1278 }
1279 else if (sscanf(name, "nic-tx-%s", arg_name) == 1) {
1280 hud_nic_graph_install(pane, arg_name, NIC_DIRECTION_TX);
1281 }
1282 else if (sscanf(name, "nic-rssi-%s", arg_name) == 1) {
1283 hud_nic_graph_install(pane, arg_name, NIC_RSSI_DBM);
1284 pane->type = PIPE_DRIVER_QUERY_TYPE_DBM;
1285 }
1286 else if (sscanf(name, "diskstat-rd-%s", arg_name) == 1) {
1287 hud_diskstat_graph_install(pane, arg_name, DISKSTAT_RD);
1288 pane->type = PIPE_DRIVER_QUERY_TYPE_BYTES;
1289 }
1290 else if (sscanf(name, "diskstat-wr-%s", arg_name) == 1) {
1291 hud_diskstat_graph_install(pane, arg_name, DISKSTAT_WR);
1292 pane->type = PIPE_DRIVER_QUERY_TYPE_BYTES;
1293 }
1294 else if (sscanf(name, "cpufreq-min-cpu%u", &i) == 1) {
1295 hud_cpufreq_graph_install(pane, i, CPUFREQ_MINIMUM);
1296 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1297 }
1298 else if (sscanf(name, "cpufreq-cur-cpu%u", &i) == 1) {
1299 hud_cpufreq_graph_install(pane, i, CPUFREQ_CURRENT);
1300 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1301 }
1302 else if (sscanf(name, "cpufreq-max-cpu%u", &i) == 1) {
1303 hud_cpufreq_graph_install(pane, i, CPUFREQ_MAXIMUM);
1304 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1305 }
1306 #endif
1307 #ifdef HAVE_LIBSENSORS
1308 else if (sscanf(name, "sensors_temp_cu-%s", arg_name) == 1) {
1309 hud_sensors_temp_graph_install(pane, arg_name,
1310 SENSORS_TEMP_CURRENT);
1311 pane->type = PIPE_DRIVER_QUERY_TYPE_TEMPERATURE;
1312 }
1313 else if (sscanf(name, "sensors_temp_cr-%s", arg_name) == 1) {
1314 hud_sensors_temp_graph_install(pane, arg_name,
1315 SENSORS_TEMP_CRITICAL);
1316 pane->type = PIPE_DRIVER_QUERY_TYPE_TEMPERATURE;
1317 }
1318 else if (sscanf(name, "sensors_volt_cu-%s", arg_name) == 1) {
1319 hud_sensors_temp_graph_install(pane, arg_name,
1320 SENSORS_VOLTAGE_CURRENT);
1321 pane->type = PIPE_DRIVER_QUERY_TYPE_VOLTS;
1322 }
1323 else if (sscanf(name, "sensors_curr_cu-%s", arg_name) == 1) {
1324 hud_sensors_temp_graph_install(pane, arg_name,
1325 SENSORS_CURRENT_CURRENT);
1326 pane->type = PIPE_DRIVER_QUERY_TYPE_AMPS;
1327 }
1328 else if (sscanf(name, "sensors_pow_cu-%s", arg_name) == 1) {
1329 hud_sensors_temp_graph_install(pane, arg_name,
1330 SENSORS_POWER_CURRENT);
1331 pane->type = PIPE_DRIVER_QUERY_TYPE_WATTS;
1332 }
1333 #endif
1334 else if (strcmp(name, "samples-passed") == 0 &&
1335 has_occlusion_query(screen)) {
1336 hud_pipe_query_install(&hud->batch_query, pane,
1337 "samples-passed",
1338 PIPE_QUERY_OCCLUSION_COUNTER, 0, 0,
1339 PIPE_DRIVER_QUERY_TYPE_UINT64,
1340 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1341 0);
1342 }
1343 else if (strcmp(name, "primitives-generated") == 0 &&
1344 has_streamout(screen)) {
1345 hud_pipe_query_install(&hud->batch_query, pane,
1346 "primitives-generated",
1347 PIPE_QUERY_PRIMITIVES_GENERATED, 0, 0,
1348 PIPE_DRIVER_QUERY_TYPE_UINT64,
1349 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1350 0);
1351 }
1352 else {
1353 boolean processed = FALSE;
1354
1355 /* pipeline statistics queries */
1356 if (has_pipeline_stats_query(screen)) {
1357 static const char *pipeline_statistics_names[] =
1358 {
1359 "ia-vertices",
1360 "ia-primitives",
1361 "vs-invocations",
1362 "gs-invocations",
1363 "gs-primitives",
1364 "clipper-invocations",
1365 "clipper-primitives-generated",
1366 "ps-invocations",
1367 "hs-invocations",
1368 "ds-invocations",
1369 "cs-invocations"
1370 };
1371 for (i = 0; i < ARRAY_SIZE(pipeline_statistics_names); ++i)
1372 if (strcmp(name, pipeline_statistics_names[i]) == 0)
1373 break;
1374 if (i < ARRAY_SIZE(pipeline_statistics_names)) {
1375 hud_pipe_query_install(&hud->batch_query, pane, name,
1376 PIPE_QUERY_PIPELINE_STATISTICS, i,
1377 0, PIPE_DRIVER_QUERY_TYPE_UINT64,
1378 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1379 0);
1380 processed = TRUE;
1381 }
1382 }
1383
1384 /* driver queries */
1385 if (!processed) {
1386 if (!hud_driver_query_install(&hud->batch_query, pane,
1387 screen, name)) {
1388 fprintf(stderr, "gallium_hud: unknown driver query '%s'\n", name);
1389 fflush(stderr);
1390 }
1391 }
1392 }
1393
1394 if (*env == ':') {
1395 env++;
1396
1397 if (!pane) {
1398 fprintf(stderr, "gallium_hud: syntax error: unexpected ':', "
1399 "expected a name\n");
1400 fflush(stderr);
1401 break;
1402 }
1403
1404 num = parse_string(env, s);
1405 env += num;
1406
1407 if (num && sscanf(s, "%u", &i) == 1) {
1408 hud_pane_set_max_value(pane, i);
1409 pane->initial_max_value = i;
1410 }
1411 else {
1412 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) "
1413 "after ':'\n", *env, *env);
1414 fflush(stderr);
1415 }
1416 }
1417
1418 if (*env == '=') {
1419 env++;
1420
1421 if (!pane) {
1422 fprintf(stderr, "gallium_hud: syntax error: unexpected '=', "
1423 "expected a name\n");
1424 fflush(stderr);
1425 break;
1426 }
1427
1428 num = parse_string(env, s);
1429 env += num;
1430
1431 strip_hyphens(s);
1432 if (!LIST_IS_EMPTY(&pane->graph_list)) {
1433 struct hud_graph *graph;
1434 graph = LIST_ENTRY(struct hud_graph, pane->graph_list.prev, head);
1435 strncpy(graph->name, s, sizeof(graph->name)-1);
1436 graph->name[sizeof(graph->name)-1] = 0;
1437 }
1438 }
1439
1440 if (*env == 0)
1441 break;
1442
1443 /* parse a separator */
1444 switch (*env) {
1445 case '+':
1446 env++;
1447 break;
1448
1449 case ',':
1450 env++;
1451 if (!pane)
1452 break;
1453
1454 y += height + hud->font.glyph_height * (pane->num_graphs + 2);
1455 y_simple += hud->font.glyph_height * (pane->num_graphs + 1);
1456 height = 100;
1457
1458 if (pane && pane->num_graphs) {
1459 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1460 pane = NULL;
1461 }
1462 break;
1463
1464 case ';':
1465 env++;
1466 y = 10;
1467 y_simple = 10;
1468 x += column_width + hud->font.glyph_width * 9;
1469 height = 100;
1470
1471 if (pane && pane->num_graphs) {
1472 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1473 pane = NULL;
1474 }
1475
1476 /* Starting a new column; reset column width. */
1477 column_width = 251;
1478 break;
1479
1480 default:
1481 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *env);
1482 fflush(stderr);
1483 }
1484
1485 /* Reset to defaults for the next pane in case these were modified. */
1486 width = 251;
1487 ceiling = UINT64_MAX;
1488 dyn_ceiling = false;
1489 sort_items = false;
1490
1491 }
1492
1493 if (pane) {
1494 if (pane->num_graphs) {
1495 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1496 }
1497 else {
1498 FREE(pane);
1499 }
1500 }
1501
1502 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
1503 struct hud_graph *gr;
1504
1505 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
1506 hud_graph_set_dump_file(gr);
1507 }
1508 }
1509 }
1510
1511 static void
1512 print_help(struct pipe_screen *screen)
1513 {
1514 int i, num_queries, num_cpus = hud_get_num_cpus();
1515
1516 puts("Syntax: GALLIUM_HUD=name1[+name2][...][:value1][,nameI...][;nameJ...]");
1517 puts("");
1518 puts(" Names are identifiers of data sources which will be drawn as graphs");
1519 puts(" in panes. Multiple graphs can be drawn in the same pane.");
1520 puts(" There can be multiple panes placed in rows and columns.");
1521 puts("");
1522 puts(" '+' separates names which will share a pane.");
1523 puts(" ':[value]' specifies the initial maximum value of the Y axis");
1524 puts(" for the given pane.");
1525 puts(" ',' creates a new pane below the last one.");
1526 puts(" ';' creates a new pane at the top of the next column.");
1527 puts(" '=' followed by a string, changes the name of the last data source");
1528 puts(" to that string");
1529 puts("");
1530 puts(" Example: GALLIUM_HUD=\"cpu,fps;primitives-generated\"");
1531 puts("");
1532 puts(" Additionally, by prepending '.[identifier][value]' modifiers to");
1533 puts(" a name, it is possible to explicitly set the location and size");
1534 puts(" of a pane, along with limiting overall maximum value of the");
1535 puts(" Y axis and activating dynamic readjustment of the Y axis.");
1536 puts(" Several modifiers may be applied to the same pane simultaneously.");
1537 puts("");
1538 puts(" 'x[value]' sets the location of the pane on the x axis relative");
1539 puts(" to the upper-left corner of the viewport, in pixels.");
1540 puts(" 'y[value]' sets the location of the pane on the y axis relative");
1541 puts(" to the upper-left corner of the viewport, in pixels.");
1542 puts(" 'w[value]' sets width of the graph pixels.");
1543 puts(" 'h[value]' sets height of the graph in pixels.");
1544 puts(" 'c[value]' sets the ceiling of the value of the Y axis.");
1545 puts(" If the graph needs to draw values higher than");
1546 puts(" the ceiling allows, the value is clamped.");
1547 puts(" 'd' activates dynamic Y axis readjustment to set the value of");
1548 puts(" the Y axis to match the highest value still visible in the graph.");
1549 puts(" 'r' resets the color counter (the next color will be green)");
1550 puts(" 's' sort items below graphs in descending order");
1551 puts("");
1552 puts(" If 'c' and 'd' modifiers are used simultaneously, both are in effect:");
1553 puts(" the Y axis does not go above the restriction imposed by 'c' while");
1554 puts(" still adjusting the value of the Y axis down when appropriate.");
1555 puts("");
1556 puts(" You can change behavior of the whole HUD by adding these options at");
1557 puts(" the beginning of the environment variable:");
1558 puts(" 'simple,' disables all the fancy stuff and only draws text.");
1559 puts("");
1560 puts(" Example: GALLIUM_HUD=\".w256.h64.x1600.y520.d.c1000fps+cpu,.datom-count\"");
1561 puts("");
1562 puts(" Available names:");
1563 puts(" fps");
1564 puts(" cpu");
1565
1566 for (i = 0; i < num_cpus; i++)
1567 printf(" cpu%i\n", i);
1568
1569 if (has_occlusion_query(screen))
1570 puts(" samples-passed");
1571 if (has_streamout(screen))
1572 puts(" primitives-generated");
1573
1574 if (has_pipeline_stats_query(screen)) {
1575 puts(" ia-vertices");
1576 puts(" ia-primitives");
1577 puts(" vs-invocations");
1578 puts(" gs-invocations");
1579 puts(" gs-primitives");
1580 puts(" clipper-invocations");
1581 puts(" clipper-primitives-generated");
1582 puts(" ps-invocations");
1583 puts(" hs-invocations");
1584 puts(" ds-invocations");
1585 puts(" cs-invocations");
1586 }
1587
1588 #ifdef HAVE_GALLIUM_EXTRA_HUD
1589 hud_get_num_disks(1);
1590 hud_get_num_nics(1);
1591 hud_get_num_cpufreq(1);
1592 #endif
1593 #ifdef HAVE_LIBSENSORS
1594 hud_get_num_sensors(1);
1595 #endif
1596
1597 if (screen->get_driver_query_info){
1598 boolean skipping = false;
1599 struct pipe_driver_query_info info;
1600 num_queries = screen->get_driver_query_info(screen, 0, NULL);
1601
1602 for (i = 0; i < num_queries; i++){
1603 screen->get_driver_query_info(screen, i, &info);
1604 if (info.flags & PIPE_DRIVER_QUERY_FLAG_DONT_LIST) {
1605 if (!skipping)
1606 puts(" ...");
1607 skipping = true;
1608 } else {
1609 printf(" %s\n", info.name);
1610 skipping = false;
1611 }
1612 }
1613 }
1614
1615 puts("");
1616 fflush(stdout);
1617 }
1618
1619 static void
1620 hud_unset_draw_context(struct hud_context *hud)
1621 {
1622 struct pipe_context *pipe = hud->pipe;
1623
1624 if (!pipe)
1625 return;
1626
1627 pipe_sampler_view_reference(&hud->font_sampler_view, NULL);
1628
1629 if (hud->fs_color) {
1630 pipe->delete_fs_state(pipe, hud->fs_color);
1631 hud->fs_color = NULL;
1632 }
1633 if (hud->fs_text) {
1634 pipe->delete_fs_state(pipe, hud->fs_text);
1635 hud->fs_text = NULL;
1636 }
1637 if (hud->vs) {
1638 pipe->delete_vs_state(pipe, hud->vs);
1639 hud->vs = NULL;
1640 }
1641
1642 hud->cso = NULL;
1643 hud->pipe = NULL;
1644 }
1645
1646 static bool
1647 hud_set_draw_context(struct hud_context *hud, struct cso_context *cso)
1648 {
1649 struct pipe_context *pipe = cso_get_pipe_context(cso);
1650
1651 assert(!hud->pipe);
1652 hud->pipe = pipe;
1653 hud->cso = cso;
1654
1655 struct pipe_sampler_view view_templ;
1656 u_sampler_view_default_template(
1657 &view_templ, hud->font.texture, hud->font.texture->format);
1658 hud->font_sampler_view = pipe->create_sampler_view(pipe, hud->font.texture,
1659 &view_templ);
1660 if (!hud->font_sampler_view)
1661 goto fail;
1662
1663 /* fragment shader */
1664 hud->fs_color =
1665 util_make_fragment_passthrough_shader(pipe,
1666 TGSI_SEMANTIC_COLOR,
1667 TGSI_INTERPOLATE_CONSTANT,
1668 TRUE);
1669
1670 {
1671 /* Read a texture and do .xxxx swizzling. */
1672 static const char *fragment_shader_text = {
1673 "FRAG\n"
1674 "DCL IN[0], GENERIC[0], LINEAR\n"
1675 "DCL SAMP[0]\n"
1676 "DCL SVIEW[0], RECT, FLOAT\n"
1677 "DCL OUT[0], COLOR[0]\n"
1678 "DCL TEMP[0]\n"
1679
1680 "TEX TEMP[0], IN[0], SAMP[0], RECT\n"
1681 "MOV OUT[0], TEMP[0].xxxx\n"
1682 "END\n"
1683 };
1684
1685 struct tgsi_token tokens[1000];
1686 struct pipe_shader_state state;
1687
1688 if (!tgsi_text_translate(fragment_shader_text, tokens, ARRAY_SIZE(tokens))) {
1689 assert(0);
1690 goto fail;
1691 }
1692 pipe_shader_state_from_tgsi(&state, tokens);
1693 hud->fs_text = pipe->create_fs_state(pipe, &state);
1694 }
1695
1696 /* vertex shader */
1697 {
1698 static const char *vertex_shader_text = {
1699 "VERT\n"
1700 "DCL IN[0..1]\n"
1701 "DCL OUT[0], POSITION\n"
1702 "DCL OUT[1], COLOR[0]\n" /* color */
1703 "DCL OUT[2], GENERIC[0]\n" /* texcoord */
1704 /* [0] = color,
1705 * [1] = (2/fb_width, 2/fb_height, xoffset, yoffset)
1706 * [2] = (xscale, yscale, 0, 0) */
1707 "DCL CONST[0][0..2]\n"
1708 "DCL TEMP[0]\n"
1709 "IMM[0] FLT32 { -1, 0, 0, 1 }\n"
1710
1711 /* v = in * (xscale, yscale) + (xoffset, yoffset) */
1712 "MAD TEMP[0].xy, IN[0], CONST[0][2].xyyy, CONST[0][1].zwww\n"
1713 /* pos = v * (2 / fb_width, 2 / fb_height) - (1, 1) */
1714 "MAD OUT[0].xy, TEMP[0], CONST[0][1].xyyy, IMM[0].xxxx\n"
1715 "MOV OUT[0].zw, IMM[0]\n"
1716
1717 "MOV OUT[1], CONST[0][0]\n"
1718 "MOV OUT[2], IN[1]\n"
1719 "END\n"
1720 };
1721
1722 struct tgsi_token tokens[1000];
1723 struct pipe_shader_state state;
1724 if (!tgsi_text_translate(vertex_shader_text, tokens, ARRAY_SIZE(tokens))) {
1725 assert(0);
1726 goto fail;
1727 }
1728 pipe_shader_state_from_tgsi(&state, tokens);
1729 hud->vs = pipe->create_vs_state(pipe, &state);
1730 }
1731
1732 return true;
1733
1734 fail:
1735 hud_unset_draw_context(hud);
1736 fprintf(stderr, "hud: failed to set a draw context");
1737 return false;
1738 }
1739
1740 static void
1741 hud_unset_record_context(struct hud_context *hud)
1742 {
1743 struct pipe_context *pipe = hud->record_pipe;
1744 struct hud_pane *pane, *pane_tmp;
1745 struct hud_graph *graph, *graph_tmp;
1746
1747 if (!pipe)
1748 return;
1749
1750 LIST_FOR_EACH_ENTRY_SAFE(pane, pane_tmp, &hud->pane_list, head) {
1751 LIST_FOR_EACH_ENTRY_SAFE(graph, graph_tmp, &pane->graph_list, head) {
1752 LIST_DEL(&graph->head);
1753 hud_graph_destroy(graph, pipe);
1754 }
1755 LIST_DEL(&pane->head);
1756 FREE(pane);
1757 }
1758
1759 hud_batch_query_cleanup(&hud->batch_query, pipe);
1760 hud->record_pipe = NULL;
1761 }
1762
1763 static void
1764 hud_set_record_context(struct hud_context *hud, struct pipe_context *pipe)
1765 {
1766 hud->record_pipe = pipe;
1767 }
1768
1769 /**
1770 * Create the HUD.
1771 *
1772 * If "share" is non-NULL and GALLIUM_HUD_SHARE=x,y is set, increment the
1773 * reference counter of "share", set "cso" as the recording or drawing context
1774 * according to the environment variable, and return "share".
1775 * This allows sharing the HUD instance within a multi-context share group,
1776 * record queries in one context and draw them in another.
1777 */
1778 struct hud_context *
1779 hud_create(struct cso_context *cso, struct hud_context *share)
1780 {
1781 const char *share_env = debug_get_option("GALLIUM_HUD_SHARE", NULL);
1782 unsigned record_ctx = 0, draw_ctx = 0;
1783
1784 if (share_env && sscanf(share_env, "%u,%u", &record_ctx, &draw_ctx) != 2)
1785 share_env = NULL;
1786
1787 if (share && share_env) {
1788 /* All contexts in a share group share the HUD instance.
1789 * Only one context can record queries and only one context
1790 * can draw the HUD.
1791 *
1792 * GALLIUM_HUD_SHARE=x,y determines the context indices.
1793 */
1794 int context_id = p_atomic_inc_return(&share->refcount) - 1;
1795
1796 if (context_id == record_ctx) {
1797 assert(!share->record_pipe);
1798 hud_set_record_context(share, cso_get_pipe_context(cso));
1799 }
1800
1801 if (context_id == draw_ctx) {
1802 assert(!share->pipe);
1803 hud_set_draw_context(share, cso);
1804 }
1805
1806 return share;
1807 }
1808
1809 struct pipe_screen *screen = cso_get_pipe_context(cso)->screen;
1810 struct hud_context *hud;
1811 unsigned i;
1812 const char *env = debug_get_option("GALLIUM_HUD", NULL);
1813 #ifdef PIPE_OS_UNIX
1814 unsigned signo = debug_get_num_option("GALLIUM_HUD_TOGGLE_SIGNAL", 0);
1815 static boolean sig_handled = FALSE;
1816 struct sigaction action = {};
1817 #endif
1818 huds_visible = debug_get_bool_option("GALLIUM_HUD_VISIBLE", TRUE);
1819
1820 if (!env || !*env)
1821 return NULL;
1822
1823 if (strcmp(env, "help") == 0) {
1824 print_help(screen);
1825 return NULL;
1826 }
1827
1828 hud = CALLOC_STRUCT(hud_context);
1829 if (!hud)
1830 return NULL;
1831
1832 /* font (the context is only used for the texture upload) */
1833 if (!util_font_create(cso_get_pipe_context(cso),
1834 UTIL_FONT_FIXED_8X13, &hud->font)) {
1835 FREE(hud);
1836 return NULL;
1837 }
1838
1839 hud->refcount = 1;
1840 hud->has_srgb = screen->is_format_supported(screen,
1841 PIPE_FORMAT_B8G8R8A8_SRGB,
1842 PIPE_TEXTURE_2D, 0,
1843 PIPE_BIND_RENDER_TARGET) != 0;
1844
1845 /* blend state */
1846 hud->no_blend.rt[0].colormask = PIPE_MASK_RGBA;
1847
1848 hud->alpha_blend.rt[0].colormask = PIPE_MASK_RGBA;
1849 hud->alpha_blend.rt[0].blend_enable = 1;
1850 hud->alpha_blend.rt[0].rgb_func = PIPE_BLEND_ADD;
1851 hud->alpha_blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_SRC_ALPHA;
1852 hud->alpha_blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_INV_SRC_ALPHA;
1853 hud->alpha_blend.rt[0].alpha_func = PIPE_BLEND_ADD;
1854 hud->alpha_blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ZERO;
1855 hud->alpha_blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
1856
1857 /* rasterizer */
1858 hud->rasterizer.half_pixel_center = 1;
1859 hud->rasterizer.bottom_edge_rule = 1;
1860 hud->rasterizer.depth_clip = 1;
1861 hud->rasterizer.line_width = 1;
1862 hud->rasterizer.line_last_pixel = 1;
1863
1864 hud->rasterizer_aa_lines = hud->rasterizer;
1865 hud->rasterizer_aa_lines.line_smooth = 1;
1866
1867 /* vertex elements */
1868 for (i = 0; i < 2; i++) {
1869 hud->velems[i].src_offset = i * 2 * sizeof(float);
1870 hud->velems[i].src_format = PIPE_FORMAT_R32G32_FLOAT;
1871 hud->velems[i].vertex_buffer_index = cso_get_aux_vertex_buffer_slot(cso);
1872 }
1873
1874 /* sampler state (for font drawing) */
1875 hud->font_sampler_state.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1876 hud->font_sampler_state.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1877 hud->font_sampler_state.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1878 hud->font_sampler_state.normalized_coords = 0;
1879
1880 /* constants */
1881 hud->constbuf.buffer_size = sizeof(hud->constants);
1882 hud->constbuf.user_buffer = &hud->constants;
1883
1884 LIST_INITHEAD(&hud->pane_list);
1885
1886 /* setup sig handler once for all hud contexts */
1887 #ifdef PIPE_OS_UNIX
1888 if (!sig_handled && signo != 0) {
1889 action.sa_sigaction = &signal_visible_handler;
1890 action.sa_flags = SA_SIGINFO;
1891
1892 if (signo >= NSIG)
1893 fprintf(stderr, "gallium_hud: invalid signal %u\n", signo);
1894 else if (sigaction(signo, &action, NULL) < 0)
1895 fprintf(stderr, "gallium_hud: unable to set handler for signal %u\n", signo);
1896 fflush(stderr);
1897
1898 sig_handled = TRUE;
1899 }
1900 #endif
1901
1902 if (record_ctx == 0)
1903 hud_set_record_context(hud, cso_get_pipe_context(cso));
1904 if (draw_ctx == 0)
1905 hud_set_draw_context(hud, cso);
1906
1907 hud_parse_env_var(hud, screen, env);
1908 return hud;
1909 }
1910
1911 /**
1912 * Destroy a HUD. If the HUD has several users, decrease the reference counter
1913 * and detach the context from the HUD.
1914 */
1915 void
1916 hud_destroy(struct hud_context *hud, struct cso_context *cso)
1917 {
1918 if (!cso || hud->record_pipe == cso_get_pipe_context(cso))
1919 hud_unset_record_context(hud);
1920
1921 if (!cso || hud->cso == cso)
1922 hud_unset_draw_context(hud);
1923
1924 if (p_atomic_dec_zero(&hud->refcount)) {
1925 pipe_resource_reference(&hud->font.texture, NULL);
1926 FREE(hud);
1927 }
1928 }
1929
1930 void
1931 hud_add_queue_for_monitoring(struct hud_context *hud,
1932 struct util_queue_monitoring *queue_info)
1933 {
1934 assert(!hud->monitored_queue);
1935 hud->monitored_queue = queue_info;
1936 }