hud: add sampler view declaration in text fragment shader
[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 <signal.h>
37 #include <stdio.h>
38
39 #include "hud/hud_context.h"
40 #include "hud/hud_private.h"
41 #include "hud/font.h"
42
43 #include "cso_cache/cso_context.h"
44 #include "util/u_draw_quad.h"
45 #include "util/u_inlines.h"
46 #include "util/u_memory.h"
47 #include "util/u_math.h"
48 #include "util/u_sampler.h"
49 #include "util/u_simple_shaders.h"
50 #include "util/u_string.h"
51 #include "util/u_upload_mgr.h"
52 #include "tgsi/tgsi_text.h"
53 #include "tgsi/tgsi_dump.h"
54
55 /* Control the visibility of all HUD contexts */
56 static boolean huds_visible = TRUE;
57
58 struct hud_context {
59 struct pipe_context *pipe;
60 struct cso_context *cso;
61 struct u_upload_mgr *uploader;
62
63 struct hud_batch_query_context *batch_query;
64 struct list_head pane_list;
65
66 /* states */
67 struct pipe_blend_state alpha_blend;
68 struct pipe_depth_stencil_alpha_state dsa;
69 void *fs_color, *fs_text;
70 struct pipe_rasterizer_state rasterizer;
71 void *vs;
72 struct pipe_vertex_element velems[2];
73
74 /* font */
75 struct util_font font;
76 struct pipe_sampler_view *font_sampler_view;
77 struct pipe_sampler_state font_sampler_state;
78
79 /* VS constant buffer */
80 struct {
81 float color[4];
82 float two_div_fb_width;
83 float two_div_fb_height;
84 float translate[2];
85 float scale[2];
86 float padding[2];
87 } constants;
88 struct pipe_constant_buffer constbuf;
89
90 unsigned fb_width, fb_height;
91
92 /* vertices for text and background drawing are accumulated here and then
93 * drawn all at once */
94 struct vertex_queue {
95 float *vertices;
96 struct pipe_vertex_buffer vbuf;
97 unsigned max_num_vertices;
98 unsigned num_vertices;
99 } text, bg, whitelines;
100 };
101
102 #ifdef PIPE_OS_UNIX
103 static void
104 signal_visible_handler(int sig, siginfo_t *siginfo, void *context)
105 {
106 huds_visible = !huds_visible;
107 }
108 #endif
109
110 static void
111 hud_draw_colored_prims(struct hud_context *hud, unsigned prim,
112 float *buffer, unsigned num_vertices,
113 float r, float g, float b, float a,
114 int xoffset, int yoffset, float yscale)
115 {
116 struct cso_context *cso = hud->cso;
117 struct pipe_vertex_buffer vbuffer = {0};
118
119 hud->constants.color[0] = r;
120 hud->constants.color[1] = g;
121 hud->constants.color[2] = b;
122 hud->constants.color[3] = a;
123 hud->constants.translate[0] = (float) xoffset;
124 hud->constants.translate[1] = (float) yoffset;
125 hud->constants.scale[0] = 1;
126 hud->constants.scale[1] = yscale;
127 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
128
129 vbuffer.user_buffer = buffer;
130 vbuffer.stride = 2 * sizeof(float);
131
132 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso),
133 1, &vbuffer);
134 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
135 cso_draw_arrays(cso, prim, 0, num_vertices);
136 }
137
138 static void
139 hud_draw_colored_quad(struct hud_context *hud, unsigned prim,
140 unsigned x1, unsigned y1, unsigned x2, unsigned y2,
141 float r, float g, float b, float a)
142 {
143 float buffer[] = {
144 (float) x1, (float) y1,
145 (float) x1, (float) y2,
146 (float) x2, (float) y2,
147 (float) x2, (float) y1,
148 };
149
150 hud_draw_colored_prims(hud, prim, buffer, 4, r, g, b, a, 0, 0, 1);
151 }
152
153 static void
154 hud_draw_background_quad(struct hud_context *hud,
155 unsigned x1, unsigned y1, unsigned x2, unsigned y2)
156 {
157 float *vertices = hud->bg.vertices + hud->bg.num_vertices*2;
158 unsigned num = 0;
159
160 assert(hud->bg.num_vertices + 4 <= hud->bg.max_num_vertices);
161
162 vertices[num++] = (float) x1;
163 vertices[num++] = (float) y1;
164
165 vertices[num++] = (float) x1;
166 vertices[num++] = (float) y2;
167
168 vertices[num++] = (float) x2;
169 vertices[num++] = (float) y2;
170
171 vertices[num++] = (float) x2;
172 vertices[num++] = (float) y1;
173
174 hud->bg.num_vertices += num/2;
175 }
176
177 static void
178 hud_draw_string(struct hud_context *hud, unsigned x, unsigned y,
179 const char *str, ...)
180 {
181 char buf[256];
182 char *s = buf;
183 float *vertices = hud->text.vertices + hud->text.num_vertices*4;
184 unsigned num = 0;
185
186 va_list ap;
187 va_start(ap, str);
188 util_vsnprintf(buf, sizeof(buf), str, ap);
189 va_end(ap);
190
191 if (!*s)
192 return;
193
194 hud_draw_background_quad(hud,
195 x, y,
196 x + strlen(buf)*hud->font.glyph_width,
197 y + hud->font.glyph_height);
198
199 while (*s) {
200 unsigned x1 = x;
201 unsigned y1 = y;
202 unsigned x2 = x + hud->font.glyph_width;
203 unsigned y2 = y + hud->font.glyph_height;
204 unsigned tx1 = (*s % 16) * hud->font.glyph_width;
205 unsigned ty1 = (*s / 16) * hud->font.glyph_height;
206 unsigned tx2 = tx1 + hud->font.glyph_width;
207 unsigned ty2 = ty1 + hud->font.glyph_height;
208
209 if (*s == ' ') {
210 x += hud->font.glyph_width;
211 s++;
212 continue;
213 }
214
215 assert(hud->text.num_vertices + num/4 + 4 <= hud->text.max_num_vertices);
216
217 vertices[num++] = (float) x1;
218 vertices[num++] = (float) y1;
219 vertices[num++] = (float) tx1;
220 vertices[num++] = (float) ty1;
221
222 vertices[num++] = (float) x1;
223 vertices[num++] = (float) y2;
224 vertices[num++] = (float) tx1;
225 vertices[num++] = (float) ty2;
226
227 vertices[num++] = (float) x2;
228 vertices[num++] = (float) y2;
229 vertices[num++] = (float) tx2;
230 vertices[num++] = (float) ty2;
231
232 vertices[num++] = (float) x2;
233 vertices[num++] = (float) y1;
234 vertices[num++] = (float) tx2;
235 vertices[num++] = (float) ty1;
236
237 x += hud->font.glyph_width;
238 s++;
239 }
240
241 hud->text.num_vertices += num/4;
242 }
243
244 static void
245 number_to_human_readable(uint64_t num, uint64_t max_value,
246 enum pipe_driver_query_type type, char *out)
247 {
248 static const char *byte_units[] =
249 {" B", " KB", " MB", " GB", " TB", " PB", " EB"};
250 static const char *metric_units[] =
251 {"", " k", " M", " G", " T", " P", " E"};
252 static const char *time_units[] =
253 {" us", " ms", " s"}; /* based on microseconds */
254 static const char *hz_units[] =
255 {" Hz", " KHz", " MHz", " GHz"};
256 static const char *percent_units[] = {"%"};
257
258 const char **units;
259 unsigned max_unit;
260 double divisor = (type == PIPE_DRIVER_QUERY_TYPE_BYTES) ? 1024 : 1000;
261 unsigned unit = 0;
262 double d = num;
263
264 switch (type) {
265 case PIPE_DRIVER_QUERY_TYPE_MICROSECONDS:
266 max_unit = ARRAY_SIZE(time_units)-1;
267 units = time_units;
268 break;
269 case PIPE_DRIVER_QUERY_TYPE_PERCENTAGE:
270 max_unit = ARRAY_SIZE(percent_units)-1;
271 units = percent_units;
272 break;
273 case PIPE_DRIVER_QUERY_TYPE_BYTES:
274 max_unit = ARRAY_SIZE(byte_units)-1;
275 units = byte_units;
276 break;
277 case PIPE_DRIVER_QUERY_TYPE_HZ:
278 max_unit = ARRAY_SIZE(hz_units)-1;
279 units = hz_units;
280 break;
281 default:
282 if (max_value == 100) {
283 max_unit = ARRAY_SIZE(percent_units)-1;
284 units = percent_units;
285 } else {
286 max_unit = ARRAY_SIZE(metric_units)-1;
287 units = metric_units;
288 }
289 }
290
291 while (d > divisor && unit < max_unit) {
292 d /= divisor;
293 unit++;
294 }
295
296 if (d >= 100 || d == (int)d)
297 sprintf(out, "%.0f%s", d, units[unit]);
298 else if (d >= 10 || d*10 == (int)(d*10))
299 sprintf(out, "%.1f%s", d, units[unit]);
300 else
301 sprintf(out, "%.2f%s", d, units[unit]);
302 }
303
304 static void
305 hud_draw_graph_line_strip(struct hud_context *hud, const struct hud_graph *gr,
306 unsigned xoffset, unsigned yoffset, float yscale)
307 {
308 if (gr->num_vertices <= 1)
309 return;
310
311 assert(gr->index <= gr->num_vertices);
312
313 hud_draw_colored_prims(hud, PIPE_PRIM_LINE_STRIP,
314 gr->vertices, gr->index,
315 gr->color[0], gr->color[1], gr->color[2], 1,
316 xoffset + (gr->pane->max_num_vertices - gr->index - 1) * 2 - 1,
317 yoffset, yscale);
318
319 if (gr->num_vertices <= gr->index)
320 return;
321
322 hud_draw_colored_prims(hud, PIPE_PRIM_LINE_STRIP,
323 gr->vertices + gr->index*2,
324 gr->num_vertices - gr->index,
325 gr->color[0], gr->color[1], gr->color[2], 1,
326 xoffset - gr->index*2 - 1, yoffset, yscale);
327 }
328
329 static void
330 hud_pane_accumulate_vertices(struct hud_context *hud,
331 const struct hud_pane *pane)
332 {
333 struct hud_graph *gr;
334 float *line_verts = hud->whitelines.vertices + hud->whitelines.num_vertices*2;
335 unsigned i, num = 0;
336 char str[32];
337
338 /* draw background */
339 hud_draw_background_quad(hud,
340 pane->x1, pane->y1,
341 pane->x2, pane->y2);
342
343 /* draw numbers on the right-hand side */
344 for (i = 0; i < 6; i++) {
345 unsigned x = pane->x2 + 2;
346 unsigned y = pane->inner_y1 + pane->inner_height * (5 - i) / 5 -
347 hud->font.glyph_height / 2;
348
349 number_to_human_readable(pane->max_value * i / 5, pane->max_value,
350 pane->type, str);
351 hud_draw_string(hud, x, y, "%s", str);
352 }
353
354 /* draw info below the pane */
355 i = 0;
356 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
357 unsigned x = pane->x1 + 2;
358 unsigned y = pane->y2 + 2 + i*hud->font.glyph_height;
359
360 number_to_human_readable(gr->current_value, pane->max_value,
361 pane->type, str);
362 hud_draw_string(hud, x, y, " %s: %s", gr->name, str);
363 i++;
364 }
365
366 /* draw border */
367 assert(hud->whitelines.num_vertices + num/2 + 8 <= hud->whitelines.max_num_vertices);
368 line_verts[num++] = (float) pane->x1;
369 line_verts[num++] = (float) pane->y1;
370 line_verts[num++] = (float) pane->x2;
371 line_verts[num++] = (float) pane->y1;
372
373 line_verts[num++] = (float) pane->x2;
374 line_verts[num++] = (float) pane->y1;
375 line_verts[num++] = (float) pane->x2;
376 line_verts[num++] = (float) pane->y2;
377
378 line_verts[num++] = (float) pane->x1;
379 line_verts[num++] = (float) pane->y2;
380 line_verts[num++] = (float) pane->x2;
381 line_verts[num++] = (float) pane->y2;
382
383 line_verts[num++] = (float) pane->x1;
384 line_verts[num++] = (float) pane->y1;
385 line_verts[num++] = (float) pane->x1;
386 line_verts[num++] = (float) pane->y2;
387
388 /* draw horizontal lines inside the graph */
389 for (i = 0; i <= 5; i++) {
390 float y = round((pane->max_value * i / 5.0) * pane->yscale + pane->inner_y2);
391
392 assert(hud->whitelines.num_vertices + num/2 + 2 <= hud->whitelines.max_num_vertices);
393 line_verts[num++] = pane->x1;
394 line_verts[num++] = y;
395 line_verts[num++] = pane->x2;
396 line_verts[num++] = y;
397 }
398
399 hud->whitelines.num_vertices += num/2;
400 }
401
402 static void
403 hud_pane_draw_colored_objects(struct hud_context *hud,
404 const struct hud_pane *pane)
405 {
406 struct hud_graph *gr;
407 unsigned i;
408
409 /* draw colored quads below the pane */
410 i = 0;
411 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
412 unsigned x = pane->x1 + 2;
413 unsigned y = pane->y2 + 2 + i*hud->font.glyph_height;
414
415 hud_draw_colored_quad(hud, PIPE_PRIM_QUADS, x + 1, y + 1, x + 12, y + 13,
416 gr->color[0], gr->color[1], gr->color[2], 1);
417 i++;
418 }
419
420 /* draw the line strips */
421 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
422 hud_draw_graph_line_strip(hud, gr, pane->inner_x1, pane->inner_y2, pane->yscale);
423 }
424 }
425
426 static void
427 hud_alloc_vertices(struct hud_context *hud, struct vertex_queue *v,
428 unsigned num_vertices, unsigned stride)
429 {
430 v->num_vertices = 0;
431 v->max_num_vertices = num_vertices;
432 v->vbuf.stride = stride;
433 u_upload_alloc(hud->uploader, 0, v->vbuf.stride * v->max_num_vertices,
434 16, &v->vbuf.buffer_offset, &v->vbuf.buffer,
435 (void**)&v->vertices);
436 }
437
438 /**
439 * Draw the HUD to the texture \p tex.
440 * The texture is usually the back buffer being displayed.
441 */
442 void
443 hud_draw(struct hud_context *hud, struct pipe_resource *tex)
444 {
445 struct cso_context *cso = hud->cso;
446 struct pipe_context *pipe = hud->pipe;
447 struct pipe_framebuffer_state fb;
448 struct pipe_surface surf_templ, *surf;
449 struct pipe_viewport_state viewport;
450 const struct pipe_sampler_state *sampler_states[] =
451 { &hud->font_sampler_state };
452 struct hud_pane *pane;
453 struct hud_graph *gr;
454
455 if (!huds_visible)
456 return;
457
458 hud->fb_width = tex->width0;
459 hud->fb_height = tex->height0;
460 hud->constants.two_div_fb_width = 2.0f / hud->fb_width;
461 hud->constants.two_div_fb_height = 2.0f / hud->fb_height;
462
463 cso_save_state(cso, (CSO_BIT_FRAMEBUFFER |
464 CSO_BIT_SAMPLE_MASK |
465 CSO_BIT_MIN_SAMPLES |
466 CSO_BIT_BLEND |
467 CSO_BIT_DEPTH_STENCIL_ALPHA |
468 CSO_BIT_FRAGMENT_SHADER |
469 CSO_BIT_FRAGMENT_SAMPLER_VIEWS |
470 CSO_BIT_FRAGMENT_SAMPLERS |
471 CSO_BIT_RASTERIZER |
472 CSO_BIT_VIEWPORT |
473 CSO_BIT_STREAM_OUTPUTS |
474 CSO_BIT_GEOMETRY_SHADER |
475 CSO_BIT_TESSCTRL_SHADER |
476 CSO_BIT_TESSEVAL_SHADER |
477 CSO_BIT_VERTEX_SHADER |
478 CSO_BIT_VERTEX_ELEMENTS |
479 CSO_BIT_AUX_VERTEX_BUFFER_SLOT |
480 CSO_BIT_RENDER_CONDITION));
481 cso_save_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
482
483 /* set states */
484 memset(&surf_templ, 0, sizeof(surf_templ));
485 surf_templ.format = tex->format;
486 surf = pipe->create_surface(pipe, tex, &surf_templ);
487
488 memset(&fb, 0, sizeof(fb));
489 fb.nr_cbufs = 1;
490 fb.cbufs[0] = surf;
491 fb.zsbuf = NULL;
492 fb.width = hud->fb_width;
493 fb.height = hud->fb_height;
494
495 viewport.scale[0] = 0.5f * hud->fb_width;
496 viewport.scale[1] = 0.5f * hud->fb_height;
497 viewport.scale[2] = 1.0f;
498 viewport.translate[0] = 0.5f * hud->fb_width;
499 viewport.translate[1] = 0.5f * hud->fb_height;
500 viewport.translate[2] = 0.0f;
501
502 cso_set_framebuffer(cso, &fb);
503 cso_set_sample_mask(cso, ~0);
504 cso_set_min_samples(cso, 1);
505 cso_set_blend(cso, &hud->alpha_blend);
506 cso_set_depth_stencil_alpha(cso, &hud->dsa);
507 cso_set_rasterizer(cso, &hud->rasterizer);
508 cso_set_viewport(cso, &viewport);
509 cso_set_stream_outputs(cso, 0, NULL, NULL);
510 cso_set_tessctrl_shader_handle(cso, NULL);
511 cso_set_tesseval_shader_handle(cso, NULL);
512 cso_set_geometry_shader_handle(cso, NULL);
513 cso_set_vertex_shader_handle(cso, hud->vs);
514 cso_set_vertex_elements(cso, 2, hud->velems);
515 cso_set_render_condition(cso, NULL, FALSE, 0);
516 cso_set_sampler_views(cso, PIPE_SHADER_FRAGMENT, 1,
517 &hud->font_sampler_view);
518 cso_set_samplers(cso, PIPE_SHADER_FRAGMENT, 1, sampler_states);
519 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
520
521 /* prepare vertex buffers */
522 hud_alloc_vertices(hud, &hud->bg, 4 * 128, 2 * sizeof(float));
523 hud_alloc_vertices(hud, &hud->whitelines, 4 * 256, 2 * sizeof(float));
524 hud_alloc_vertices(hud, &hud->text, 4 * 512, 4 * sizeof(float));
525
526 /* prepare all graphs */
527 hud_batch_query_update(hud->batch_query);
528
529 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
530 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
531 gr->query_new_value(gr);
532 }
533
534 hud_pane_accumulate_vertices(hud, pane);
535 }
536
537 /* unmap the uploader's vertex buffer before drawing */
538 u_upload_unmap(hud->uploader);
539
540 /* draw accumulated vertices for background quads */
541 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
542
543 if (hud->bg.num_vertices) {
544 hud->constants.color[0] = 0;
545 hud->constants.color[1] = 0;
546 hud->constants.color[2] = 0;
547 hud->constants.color[3] = 0.666f;
548 hud->constants.translate[0] = 0;
549 hud->constants.translate[1] = 0;
550 hud->constants.scale[0] = 1;
551 hud->constants.scale[1] = 1;
552
553 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
554 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
555 &hud->bg.vbuf);
556 cso_draw_arrays(cso, PIPE_PRIM_QUADS, 0, hud->bg.num_vertices);
557 }
558 pipe_resource_reference(&hud->bg.vbuf.buffer, NULL);
559
560 /* draw accumulated vertices for white lines */
561 hud->constants.color[0] = 1;
562 hud->constants.color[1] = 1;
563 hud->constants.color[2] = 1;
564 hud->constants.color[3] = 1;
565 hud->constants.translate[0] = 0;
566 hud->constants.translate[1] = 0;
567 hud->constants.scale[0] = 1;
568 hud->constants.scale[1] = 1;
569 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
570
571 if (hud->whitelines.num_vertices) {
572 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
573 &hud->whitelines.vbuf);
574 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
575 cso_draw_arrays(cso, PIPE_PRIM_LINES, 0, hud->whitelines.num_vertices);
576 }
577 pipe_resource_reference(&hud->whitelines.vbuf.buffer, NULL);
578
579 /* draw accumulated vertices for text */
580 if (hud->text.num_vertices) {
581 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
582 &hud->text.vbuf);
583 cso_set_fragment_shader_handle(hud->cso, hud->fs_text);
584 cso_draw_arrays(cso, PIPE_PRIM_QUADS, 0, hud->text.num_vertices);
585 }
586 pipe_resource_reference(&hud->text.vbuf.buffer, NULL);
587
588 /* draw the rest */
589 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
590 if (pane)
591 hud_pane_draw_colored_objects(hud, pane);
592 }
593
594 cso_restore_state(cso);
595 cso_restore_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
596
597 pipe_surface_reference(&surf, NULL);
598 }
599
600 /**
601 * Set the maximum value for the Y axis of the graph.
602 * This scales the graph accordingly.
603 */
604 void
605 hud_pane_set_max_value(struct hud_pane *pane, uint64_t value)
606 {
607 pane->max_value = value;
608 pane->yscale = -(int)pane->inner_height / (float)pane->max_value;
609 }
610
611 static void
612 hud_pane_update_dyn_ceiling(struct hud_graph *gr, struct hud_pane *pane)
613 {
614 unsigned i;
615 float tmp = 0.0f;
616
617 if (pane->dyn_ceil_last_ran != gr->index) {
618 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
619 for (i = 0; i < gr->num_vertices; ++i) {
620 tmp = gr->vertices[i * 2 + 1] > tmp ?
621 gr->vertices[i * 2 + 1] : tmp;
622 }
623 }
624
625 /* Avoid setting it lower than the initial starting height. */
626 tmp = tmp > pane->initial_max_value ? tmp : pane->initial_max_value;
627 hud_pane_set_max_value(pane, tmp);
628 }
629
630 /*
631 * Mark this adjustment run so we could avoid repeating a full update
632 * again needlessly in case the pane has more than one graph.
633 */
634 pane->dyn_ceil_last_ran = gr->index;
635 }
636
637 static struct hud_pane *
638 hud_pane_create(unsigned x1, unsigned y1, unsigned x2, unsigned y2,
639 unsigned period, uint64_t max_value, uint64_t ceiling,
640 boolean dyn_ceiling)
641 {
642 struct hud_pane *pane = CALLOC_STRUCT(hud_pane);
643
644 if (!pane)
645 return NULL;
646
647 pane->x1 = x1;
648 pane->y1 = y1;
649 pane->x2 = x2;
650 pane->y2 = y2;
651 pane->inner_x1 = x1 + 1;
652 pane->inner_x2 = x2 - 1;
653 pane->inner_y1 = y1 + 1;
654 pane->inner_y2 = y2 - 1;
655 pane->inner_width = pane->inner_x2 - pane->inner_x1;
656 pane->inner_height = pane->inner_y2 - pane->inner_y1;
657 pane->period = period;
658 pane->max_num_vertices = (x2 - x1 + 2) / 2;
659 pane->ceiling = ceiling;
660 pane->dyn_ceiling = dyn_ceiling;
661 pane->dyn_ceil_last_ran = 0;
662 pane->initial_max_value = max_value;
663 hud_pane_set_max_value(pane, max_value);
664 LIST_INITHEAD(&pane->graph_list);
665 return pane;
666 }
667
668 /**
669 * Add a graph to an existing pane.
670 * One pane can contain multiple graphs over each other.
671 */
672 void
673 hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr)
674 {
675 static const float colors[][3] = {
676 {0, 1, 0},
677 {1, 0, 0},
678 {0, 1, 1},
679 {1, 0, 1},
680 {1, 1, 0},
681 {0.5, 0.5, 1},
682 {0.5, 0.5, 0.5},
683 };
684 char *name = gr->name;
685
686 /* replace '-' with a space */
687 while (*name) {
688 if (*name == '-')
689 *name = ' ';
690 name++;
691 }
692
693 assert(pane->num_graphs < Elements(colors));
694 gr->vertices = MALLOC(pane->max_num_vertices * sizeof(float) * 2);
695 gr->color[0] = colors[pane->num_graphs][0];
696 gr->color[1] = colors[pane->num_graphs][1];
697 gr->color[2] = colors[pane->num_graphs][2];
698 gr->pane = pane;
699 LIST_ADDTAIL(&gr->head, &pane->graph_list);
700 pane->num_graphs++;
701 }
702
703 void
704 hud_graph_add_value(struct hud_graph *gr, uint64_t value)
705 {
706 gr->current_value = value;
707 value = value > gr->pane->ceiling ? gr->pane->ceiling : value;
708
709 if (gr->index == gr->pane->max_num_vertices) {
710 gr->vertices[0] = 0;
711 gr->vertices[1] = gr->vertices[(gr->index-1)*2+1];
712 gr->index = 1;
713 }
714 gr->vertices[(gr->index)*2+0] = (float) (gr->index * 2);
715 gr->vertices[(gr->index)*2+1] = (float) value;
716 gr->index++;
717
718 if (gr->num_vertices < gr->pane->max_num_vertices) {
719 gr->num_vertices++;
720 }
721
722 if (gr->pane->dyn_ceiling == true) {
723 hud_pane_update_dyn_ceiling(gr, gr->pane);
724 }
725 if (value > gr->pane->max_value) {
726 hud_pane_set_max_value(gr->pane, value);
727 }
728 }
729
730 static void
731 hud_graph_destroy(struct hud_graph *graph)
732 {
733 FREE(graph->vertices);
734 if (graph->free_query_data)
735 graph->free_query_data(graph->query_data);
736 FREE(graph);
737 }
738
739 /**
740 * Read a string from the environment variable.
741 * The separators "+", ",", ":", and ";" terminate the string.
742 * Return the number of read characters.
743 */
744 static int
745 parse_string(const char *s, char *out)
746 {
747 int i;
748
749 for (i = 0; *s && *s != '+' && *s != ',' && *s != ':' && *s != ';';
750 s++, out++, i++)
751 *out = *s;
752
753 *out = 0;
754
755 if (*s && !i)
756 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) while "
757 "parsing a string\n", *s, *s);
758 return i;
759 }
760
761 static char *
762 read_pane_settings(char *str, unsigned * const x, unsigned * const y,
763 unsigned * const width, unsigned * const height,
764 uint64_t * const ceiling, boolean * const dyn_ceiling)
765 {
766 char *ret = str;
767 unsigned tmp;
768
769 while (*str == '.') {
770 ++str;
771 switch (*str) {
772 case 'x':
773 ++str;
774 *x = strtoul(str, &ret, 10);
775 str = ret;
776 break;
777
778 case 'y':
779 ++str;
780 *y = strtoul(str, &ret, 10);
781 str = ret;
782 break;
783
784 case 'w':
785 ++str;
786 tmp = strtoul(str, &ret, 10);
787 *width = tmp > 80 ? tmp : 80; /* 80 is chosen arbitrarily */
788 str = ret;
789 break;
790
791 /*
792 * Prevent setting height to less than 50. If the height is set to less,
793 * the text of the Y axis labels on the graph will start overlapping.
794 */
795 case 'h':
796 ++str;
797 tmp = strtoul(str, &ret, 10);
798 *height = tmp > 50 ? tmp : 50;
799 str = ret;
800 break;
801
802 case 'c':
803 ++str;
804 tmp = strtoul(str, &ret, 10);
805 *ceiling = tmp > 10 ? tmp : 10;
806 str = ret;
807 break;
808
809 case 'd':
810 ++str;
811 ret = str;
812 *dyn_ceiling = true;
813 break;
814
815 default:
816 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *str);
817 }
818
819 }
820
821 return ret;
822 }
823
824 static boolean
825 has_occlusion_query(struct pipe_screen *screen)
826 {
827 return screen->get_param(screen, PIPE_CAP_OCCLUSION_QUERY) != 0;
828 }
829
830 static boolean
831 has_streamout(struct pipe_screen *screen)
832 {
833 return screen->get_param(screen, PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS) != 0;
834 }
835
836 static boolean
837 has_pipeline_stats_query(struct pipe_screen *screen)
838 {
839 return screen->get_param(screen, PIPE_CAP_QUERY_PIPELINE_STATISTICS) != 0;
840 }
841
842 static void
843 hud_parse_env_var(struct hud_context *hud, const char *env)
844 {
845 unsigned num, i;
846 char name_a[256], s[256];
847 char *name;
848 struct hud_pane *pane = NULL;
849 unsigned x = 10, y = 10;
850 unsigned width = 251, height = 100;
851 unsigned period = 500 * 1000; /* default period (1/2 second) */
852 uint64_t ceiling = UINT64_MAX;
853 unsigned column_width = 251;
854 boolean dyn_ceiling = false;
855 const char *period_env;
856
857 /*
858 * The GALLIUM_HUD_PERIOD env var sets the graph update rate.
859 * The env var is in seconds (a float).
860 * Zero means update after every frame.
861 */
862 period_env = getenv("GALLIUM_HUD_PERIOD");
863 if (period_env) {
864 float p = (float) atof(period_env);
865 if (p >= 0.0f) {
866 period = (unsigned) (p * 1000 * 1000);
867 }
868 }
869
870 while ((num = parse_string(env, name_a)) != 0) {
871 env += num;
872
873 /* check for explicit location, size and etc. settings */
874 name = read_pane_settings(name_a, &x, &y, &width, &height, &ceiling,
875 &dyn_ceiling);
876
877 /*
878 * Keep track of overall column width to avoid pane overlapping in case
879 * later we create a new column while the bottom pane in the current
880 * column is less wide than the rest of the panes in it.
881 */
882 column_width = width > column_width ? width : column_width;
883
884 if (!pane) {
885 pane = hud_pane_create(x, y, x + width, y + height, period, 10,
886 ceiling, dyn_ceiling);
887 if (!pane)
888 return;
889 }
890
891 /* Add a graph. */
892 /* IF YOU CHANGE THIS, UPDATE print_help! */
893 if (strcmp(name, "fps") == 0) {
894 hud_fps_graph_install(pane);
895 }
896 else if (strcmp(name, "cpu") == 0) {
897 hud_cpu_graph_install(pane, ALL_CPUS);
898 }
899 else if (sscanf(name, "cpu%u%s", &i, s) == 1) {
900 hud_cpu_graph_install(pane, i);
901 }
902 else if (strcmp(name, "samples-passed") == 0 &&
903 has_occlusion_query(hud->pipe->screen)) {
904 hud_pipe_query_install(&hud->batch_query, pane, hud->pipe,
905 "samples-passed",
906 PIPE_QUERY_OCCLUSION_COUNTER, 0, 0,
907 PIPE_DRIVER_QUERY_TYPE_UINT64,
908 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
909 0);
910 }
911 else if (strcmp(name, "primitives-generated") == 0 &&
912 has_streamout(hud->pipe->screen)) {
913 hud_pipe_query_install(&hud->batch_query, pane, hud->pipe,
914 "primitives-generated",
915 PIPE_QUERY_PRIMITIVES_GENERATED, 0, 0,
916 PIPE_DRIVER_QUERY_TYPE_UINT64,
917 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
918 0);
919 }
920 else {
921 boolean processed = FALSE;
922
923 /* pipeline statistics queries */
924 if (has_pipeline_stats_query(hud->pipe->screen)) {
925 static const char *pipeline_statistics_names[] =
926 {
927 "ia-vertices",
928 "ia-primitives",
929 "vs-invocations",
930 "gs-invocations",
931 "gs-primitives",
932 "clipper-invocations",
933 "clipper-primitives-generated",
934 "ps-invocations",
935 "hs-invocations",
936 "ds-invocations",
937 "cs-invocations"
938 };
939 for (i = 0; i < Elements(pipeline_statistics_names); ++i)
940 if (strcmp(name, pipeline_statistics_names[i]) == 0)
941 break;
942 if (i < Elements(pipeline_statistics_names)) {
943 hud_pipe_query_install(&hud->batch_query, pane, hud->pipe, name,
944 PIPE_QUERY_PIPELINE_STATISTICS, i,
945 0, PIPE_DRIVER_QUERY_TYPE_UINT64,
946 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
947 0);
948 processed = TRUE;
949 }
950 }
951
952 /* driver queries */
953 if (!processed) {
954 if (!hud_driver_query_install(&hud->batch_query, pane, hud->pipe,
955 name)) {
956 fprintf(stderr, "gallium_hud: unknown driver query '%s'\n", name);
957 }
958 }
959 }
960
961 if (*env == ':') {
962 env++;
963
964 if (!pane) {
965 fprintf(stderr, "gallium_hud: syntax error: unexpected ':', "
966 "expected a name\n");
967 break;
968 }
969
970 num = parse_string(env, s);
971 env += num;
972
973 if (num && sscanf(s, "%u", &i) == 1) {
974 hud_pane_set_max_value(pane, i);
975 pane->initial_max_value = i;
976 }
977 else {
978 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) "
979 "after ':'\n", *env, *env);
980 }
981 }
982
983 if (*env == 0)
984 break;
985
986 /* parse a separator */
987 switch (*env) {
988 case '+':
989 env++;
990 break;
991
992 case ',':
993 env++;
994 if (!pane)
995 break;
996
997 y += height + hud->font.glyph_height * (pane->num_graphs + 2);
998 height = 100;
999
1000 if (pane && pane->num_graphs) {
1001 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1002 pane = NULL;
1003 }
1004 break;
1005
1006 case ';':
1007 env++;
1008 y = 10;
1009 x += column_width + hud->font.glyph_width * 7;
1010 height = 100;
1011
1012 if (pane && pane->num_graphs) {
1013 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1014 pane = NULL;
1015 }
1016
1017 /* Starting a new column; reset column width. */
1018 column_width = 251;
1019 break;
1020
1021 default:
1022 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *env);
1023 }
1024
1025 /* Reset to defaults for the next pane in case these were modified. */
1026 width = 251;
1027 ceiling = UINT64_MAX;
1028 dyn_ceiling = false;
1029
1030 }
1031
1032 if (pane) {
1033 if (pane->num_graphs) {
1034 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1035 }
1036 else {
1037 FREE(pane);
1038 }
1039 }
1040 }
1041
1042 static void
1043 print_help(struct pipe_screen *screen)
1044 {
1045 int i, num_queries, num_cpus = hud_get_num_cpus();
1046
1047 puts("Syntax: GALLIUM_HUD=name1[+name2][...][:value1][,nameI...][;nameJ...]");
1048 puts("");
1049 puts(" Names are identifiers of data sources which will be drawn as graphs");
1050 puts(" in panes. Multiple graphs can be drawn in the same pane.");
1051 puts(" There can be multiple panes placed in rows and columns.");
1052 puts("");
1053 puts(" '+' separates names which will share a pane.");
1054 puts(" ':[value]' specifies the initial maximum value of the Y axis");
1055 puts(" for the given pane.");
1056 puts(" ',' creates a new pane below the last one.");
1057 puts(" ';' creates a new pane at the top of the next column.");
1058 puts("");
1059 puts(" Example: GALLIUM_HUD=\"cpu,fps;primitives-generated\"");
1060 puts("");
1061 puts(" Additionally, by prepending '.[identifier][value]' modifiers to");
1062 puts(" a name, it is possible to explicitly set the location and size");
1063 puts(" of a pane, along with limiting overall maximum value of the");
1064 puts(" Y axis and activating dynamic readjustment of the Y axis.");
1065 puts(" Several modifiers may be applied to the same pane simultaneously.");
1066 puts("");
1067 puts(" 'x[value]' sets the location of the pane on the x axis relative");
1068 puts(" to the upper-left corner of the viewport, in pixels.");
1069 puts(" 'y[value]' sets the location of the pane on the y axis relative");
1070 puts(" to the upper-left corner of the viewport, in pixels.");
1071 puts(" 'w[value]' sets width of the graph pixels.");
1072 puts(" 'h[value]' sets height of the graph in pixels.");
1073 puts(" 'c[value]' sets the ceiling of the value of the Y axis.");
1074 puts(" If the graph needs to draw values higher than");
1075 puts(" the ceiling allows, the value is clamped.");
1076 puts(" 'd' activates dynamic Y axis readjustment to set the value of");
1077 puts(" the Y axis to match the highest value still visible in the graph.");
1078 puts("");
1079 puts(" If 'c' and 'd' modifiers are used simultaneously, both are in effect:");
1080 puts(" the Y axis does not go above the restriction imposed by 'c' while");
1081 puts(" still adjusting the value of the Y axis down when appropriate.");
1082 puts("");
1083 puts(" Example: GALLIUM_HUD=\".w256.h64.x1600.y520.d.c1000fps+cpu,.datom-count\"");
1084 puts("");
1085 puts(" Available names:");
1086 puts(" fps");
1087 puts(" cpu");
1088
1089 for (i = 0; i < num_cpus; i++)
1090 printf(" cpu%i\n", i);
1091
1092 if (has_occlusion_query(screen))
1093 puts(" samples-passed");
1094 if (has_streamout(screen))
1095 puts(" primitives-generated");
1096
1097 if (has_pipeline_stats_query(screen)) {
1098 puts(" ia-vertices");
1099 puts(" ia-primitives");
1100 puts(" vs-invocations");
1101 puts(" gs-invocations");
1102 puts(" gs-primitives");
1103 puts(" clipper-invocations");
1104 puts(" clipper-primitives-generated");
1105 puts(" ps-invocations");
1106 puts(" hs-invocations");
1107 puts(" ds-invocations");
1108 puts(" cs-invocations");
1109 }
1110
1111 if (screen->get_driver_query_info){
1112 boolean skipping = false;
1113 struct pipe_driver_query_info info;
1114 num_queries = screen->get_driver_query_info(screen, 0, NULL);
1115
1116 for (i = 0; i < num_queries; i++){
1117 screen->get_driver_query_info(screen, i, &info);
1118 if (info.flags & PIPE_DRIVER_QUERY_FLAG_DONT_LIST) {
1119 if (!skipping)
1120 puts(" ...");
1121 skipping = true;
1122 } else {
1123 printf(" %s\n", info.name);
1124 skipping = false;
1125 }
1126 }
1127 }
1128
1129 puts("");
1130 fflush(stdout);
1131 }
1132
1133 struct hud_context *
1134 hud_create(struct pipe_context *pipe, struct cso_context *cso)
1135 {
1136 struct hud_context *hud;
1137 struct pipe_sampler_view view_templ;
1138 unsigned i;
1139 const char *env = debug_get_option("GALLIUM_HUD", NULL);
1140 unsigned signo = debug_get_num_option("GALLIUM_HUD_TOGGLE_SIGNAL", 0);
1141 #ifdef PIPE_OS_UNIX
1142 static boolean sig_handled = FALSE;
1143 struct sigaction action = {};
1144 #endif
1145 huds_visible = debug_get_bool_option("GALLIUM_HUD_VISIBLE", TRUE);
1146
1147 if (!env || !*env)
1148 return NULL;
1149
1150 if (strcmp(env, "help") == 0) {
1151 print_help(pipe->screen);
1152 return NULL;
1153 }
1154
1155 hud = CALLOC_STRUCT(hud_context);
1156 if (!hud)
1157 return NULL;
1158
1159 hud->pipe = pipe;
1160 hud->cso = cso;
1161 hud->uploader = u_upload_create(pipe, 256 * 1024,
1162 PIPE_BIND_VERTEX_BUFFER, PIPE_USAGE_STREAM);
1163
1164 /* font */
1165 if (!util_font_create(pipe, UTIL_FONT_FIXED_8X13, &hud->font)) {
1166 u_upload_destroy(hud->uploader);
1167 FREE(hud);
1168 return NULL;
1169 }
1170
1171 /* blend state */
1172 hud->alpha_blend.rt[0].colormask = PIPE_MASK_RGBA;
1173 hud->alpha_blend.rt[0].blend_enable = 1;
1174 hud->alpha_blend.rt[0].rgb_func = PIPE_BLEND_ADD;
1175 hud->alpha_blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_SRC_ALPHA;
1176 hud->alpha_blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_INV_SRC_ALPHA;
1177 hud->alpha_blend.rt[0].alpha_func = PIPE_BLEND_ADD;
1178 hud->alpha_blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ZERO;
1179 hud->alpha_blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
1180
1181 /* fragment shader */
1182 hud->fs_color =
1183 util_make_fragment_passthrough_shader(pipe,
1184 TGSI_SEMANTIC_COLOR,
1185 TGSI_INTERPOLATE_CONSTANT,
1186 TRUE);
1187
1188 {
1189 /* Read a texture and do .xxxx swizzling. */
1190 static const char *fragment_shader_text = {
1191 "FRAG\n"
1192 "DCL IN[0], GENERIC[0], LINEAR\n"
1193 "DCL SAMP[0]\n"
1194 "DCL SVIEW[0], RECT, FLOAT\n"
1195 "DCL OUT[0], COLOR[0]\n"
1196 "DCL TEMP[0]\n"
1197
1198 "TEX TEMP[0], IN[0], SAMP[0], RECT\n"
1199 "MOV OUT[0], TEMP[0].xxxx\n"
1200 "END\n"
1201 };
1202
1203 struct tgsi_token tokens[1000];
1204 struct pipe_shader_state state = {tokens};
1205
1206 if (!tgsi_text_translate(fragment_shader_text, tokens, Elements(tokens))) {
1207 assert(0);
1208 pipe_resource_reference(&hud->font.texture, NULL);
1209 u_upload_destroy(hud->uploader);
1210 FREE(hud);
1211 return NULL;
1212 }
1213
1214 hud->fs_text = pipe->create_fs_state(pipe, &state);
1215 }
1216
1217 /* rasterizer */
1218 hud->rasterizer.half_pixel_center = 1;
1219 hud->rasterizer.bottom_edge_rule = 1;
1220 hud->rasterizer.depth_clip = 1;
1221 hud->rasterizer.line_width = 1;
1222 hud->rasterizer.line_last_pixel = 1;
1223
1224 /* vertex shader */
1225 {
1226 static const char *vertex_shader_text = {
1227 "VERT\n"
1228 "DCL IN[0..1]\n"
1229 "DCL OUT[0], POSITION\n"
1230 "DCL OUT[1], COLOR[0]\n" /* color */
1231 "DCL OUT[2], GENERIC[0]\n" /* texcoord */
1232 /* [0] = color,
1233 * [1] = (2/fb_width, 2/fb_height, xoffset, yoffset)
1234 * [2] = (xscale, yscale, 0, 0) */
1235 "DCL CONST[0..2]\n"
1236 "DCL TEMP[0]\n"
1237 "IMM[0] FLT32 { -1, 0, 0, 1 }\n"
1238
1239 /* v = in * (xscale, yscale) + (xoffset, yoffset) */
1240 "MAD TEMP[0].xy, IN[0], CONST[2].xyyy, CONST[1].zwww\n"
1241 /* pos = v * (2 / fb_width, 2 / fb_height) - (1, 1) */
1242 "MAD OUT[0].xy, TEMP[0], CONST[1].xyyy, IMM[0].xxxx\n"
1243 "MOV OUT[0].zw, IMM[0]\n"
1244
1245 "MOV OUT[1], CONST[0]\n"
1246 "MOV OUT[2], IN[1]\n"
1247 "END\n"
1248 };
1249
1250 struct tgsi_token tokens[1000];
1251 struct pipe_shader_state state = {tokens};
1252
1253 if (!tgsi_text_translate(vertex_shader_text, tokens, Elements(tokens))) {
1254 assert(0);
1255 pipe_resource_reference(&hud->font.texture, NULL);
1256 u_upload_destroy(hud->uploader);
1257 FREE(hud);
1258 return NULL;
1259 }
1260
1261 hud->vs = pipe->create_vs_state(pipe, &state);
1262 }
1263
1264 /* vertex elements */
1265 for (i = 0; i < 2; i++) {
1266 hud->velems[i].src_offset = i * 2 * sizeof(float);
1267 hud->velems[i].src_format = PIPE_FORMAT_R32G32_FLOAT;
1268 hud->velems[i].vertex_buffer_index = cso_get_aux_vertex_buffer_slot(cso);
1269 }
1270
1271 /* sampler view */
1272 u_sampler_view_default_template(
1273 &view_templ, hud->font.texture, hud->font.texture->format);
1274 hud->font_sampler_view = pipe->create_sampler_view(pipe, hud->font.texture,
1275 &view_templ);
1276
1277 /* sampler state (for font drawing) */
1278 hud->font_sampler_state.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1279 hud->font_sampler_state.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1280 hud->font_sampler_state.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1281 hud->font_sampler_state.normalized_coords = 0;
1282
1283 /* constants */
1284 hud->constbuf.buffer_size = sizeof(hud->constants);
1285 hud->constbuf.user_buffer = &hud->constants;
1286
1287 LIST_INITHEAD(&hud->pane_list);
1288
1289 /* setup sig handler once for all hud contexts */
1290 #ifdef PIPE_OS_UNIX
1291 if (!sig_handled && signo != 0) {
1292 action.sa_sigaction = &signal_visible_handler;
1293 action.sa_flags = SA_SIGINFO;
1294
1295 if (signo >= NSIG)
1296 fprintf(stderr, "gallium_hud: invalid signal %u\n", signo);
1297 else if (sigaction(signo, &action, NULL) < 0)
1298 fprintf(stderr, "gallium_hud: unable to set handler for signal %u\n", signo);
1299 fflush(stderr);
1300
1301 sig_handled = TRUE;
1302 }
1303 #endif
1304
1305 hud_parse_env_var(hud, env);
1306 return hud;
1307 }
1308
1309 void
1310 hud_destroy(struct hud_context *hud)
1311 {
1312 struct pipe_context *pipe = hud->pipe;
1313 struct hud_pane *pane, *pane_tmp;
1314 struct hud_graph *graph, *graph_tmp;
1315
1316 LIST_FOR_EACH_ENTRY_SAFE(pane, pane_tmp, &hud->pane_list, head) {
1317 LIST_FOR_EACH_ENTRY_SAFE(graph, graph_tmp, &pane->graph_list, head) {
1318 LIST_DEL(&graph->head);
1319 hud_graph_destroy(graph);
1320 }
1321 LIST_DEL(&pane->head);
1322 FREE(pane);
1323 }
1324
1325 hud_batch_query_cleanup(&hud->batch_query);
1326 pipe->delete_fs_state(pipe, hud->fs_color);
1327 pipe->delete_fs_state(pipe, hud->fs_text);
1328 pipe->delete_vs_state(pipe, hud->vs);
1329 pipe_sampler_view_reference(&hud->font_sampler_view, NULL);
1330 pipe_resource_reference(&hud->font.texture, NULL);
1331 u_upload_destroy(hud->uploader);
1332 FREE(hud);
1333 }