Merge remote-tracking branch 'public/master' into vulkan
[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_PAUSE_QUERIES |
481 CSO_BIT_RENDER_CONDITION));
482 cso_save_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
483
484 /* set states */
485 memset(&surf_templ, 0, sizeof(surf_templ));
486 surf_templ.format = tex->format;
487 surf = pipe->create_surface(pipe, tex, &surf_templ);
488
489 memset(&fb, 0, sizeof(fb));
490 fb.nr_cbufs = 1;
491 fb.cbufs[0] = surf;
492 fb.zsbuf = NULL;
493 fb.width = hud->fb_width;
494 fb.height = hud->fb_height;
495
496 viewport.scale[0] = 0.5f * hud->fb_width;
497 viewport.scale[1] = 0.5f * hud->fb_height;
498 viewport.scale[2] = 1.0f;
499 viewport.translate[0] = 0.5f * hud->fb_width;
500 viewport.translate[1] = 0.5f * hud->fb_height;
501 viewport.translate[2] = 0.0f;
502
503 cso_set_framebuffer(cso, &fb);
504 cso_set_sample_mask(cso, ~0);
505 cso_set_min_samples(cso, 1);
506 cso_set_blend(cso, &hud->alpha_blend);
507 cso_set_depth_stencil_alpha(cso, &hud->dsa);
508 cso_set_rasterizer(cso, &hud->rasterizer);
509 cso_set_viewport(cso, &viewport);
510 cso_set_stream_outputs(cso, 0, NULL, NULL);
511 cso_set_tessctrl_shader_handle(cso, NULL);
512 cso_set_tesseval_shader_handle(cso, NULL);
513 cso_set_geometry_shader_handle(cso, NULL);
514 cso_set_vertex_shader_handle(cso, hud->vs);
515 cso_set_vertex_elements(cso, 2, hud->velems);
516 cso_set_render_condition(cso, NULL, FALSE, 0);
517 cso_set_sampler_views(cso, PIPE_SHADER_FRAGMENT, 1,
518 &hud->font_sampler_view);
519 cso_set_samplers(cso, PIPE_SHADER_FRAGMENT, 1, sampler_states);
520 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
521
522 /* prepare vertex buffers */
523 hud_alloc_vertices(hud, &hud->bg, 4 * 128, 2 * sizeof(float));
524 hud_alloc_vertices(hud, &hud->whitelines, 4 * 256, 2 * sizeof(float));
525 hud_alloc_vertices(hud, &hud->text, 4 * 512, 4 * sizeof(float));
526
527 /* prepare all graphs */
528 hud_batch_query_update(hud->batch_query);
529
530 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
531 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
532 gr->query_new_value(gr);
533 }
534
535 hud_pane_accumulate_vertices(hud, pane);
536 }
537
538 /* unmap the uploader's vertex buffer before drawing */
539 u_upload_unmap(hud->uploader);
540
541 /* draw accumulated vertices for background quads */
542 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
543
544 if (hud->bg.num_vertices) {
545 hud->constants.color[0] = 0;
546 hud->constants.color[1] = 0;
547 hud->constants.color[2] = 0;
548 hud->constants.color[3] = 0.666f;
549 hud->constants.translate[0] = 0;
550 hud->constants.translate[1] = 0;
551 hud->constants.scale[0] = 1;
552 hud->constants.scale[1] = 1;
553
554 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
555 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
556 &hud->bg.vbuf);
557 cso_draw_arrays(cso, PIPE_PRIM_QUADS, 0, hud->bg.num_vertices);
558 }
559 pipe_resource_reference(&hud->bg.vbuf.buffer, NULL);
560
561 /* draw accumulated vertices for white lines */
562 hud->constants.color[0] = 1;
563 hud->constants.color[1] = 1;
564 hud->constants.color[2] = 1;
565 hud->constants.color[3] = 1;
566 hud->constants.translate[0] = 0;
567 hud->constants.translate[1] = 0;
568 hud->constants.scale[0] = 1;
569 hud->constants.scale[1] = 1;
570 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
571
572 if (hud->whitelines.num_vertices) {
573 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
574 &hud->whitelines.vbuf);
575 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
576 cso_draw_arrays(cso, PIPE_PRIM_LINES, 0, hud->whitelines.num_vertices);
577 }
578 pipe_resource_reference(&hud->whitelines.vbuf.buffer, NULL);
579
580 /* draw accumulated vertices for text */
581 if (hud->text.num_vertices) {
582 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
583 &hud->text.vbuf);
584 cso_set_fragment_shader_handle(hud->cso, hud->fs_text);
585 cso_draw_arrays(cso, PIPE_PRIM_QUADS, 0, hud->text.num_vertices);
586 }
587 pipe_resource_reference(&hud->text.vbuf.buffer, NULL);
588
589 /* draw the rest */
590 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
591 if (pane)
592 hud_pane_draw_colored_objects(hud, pane);
593 }
594
595 cso_restore_state(cso);
596 cso_restore_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
597
598 pipe_surface_reference(&surf, NULL);
599 }
600
601 /**
602 * Set the maximum value for the Y axis of the graph.
603 * This scales the graph accordingly.
604 */
605 void
606 hud_pane_set_max_value(struct hud_pane *pane, uint64_t value)
607 {
608 pane->max_value = value;
609 pane->yscale = -(int)pane->inner_height / (float)pane->max_value;
610 }
611
612 static void
613 hud_pane_update_dyn_ceiling(struct hud_graph *gr, struct hud_pane *pane)
614 {
615 unsigned i;
616 float tmp = 0.0f;
617
618 if (pane->dyn_ceil_last_ran != gr->index) {
619 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
620 for (i = 0; i < gr->num_vertices; ++i) {
621 tmp = gr->vertices[i * 2 + 1] > tmp ?
622 gr->vertices[i * 2 + 1] : tmp;
623 }
624 }
625
626 /* Avoid setting it lower than the initial starting height. */
627 tmp = tmp > pane->initial_max_value ? tmp : pane->initial_max_value;
628 hud_pane_set_max_value(pane, tmp);
629 }
630
631 /*
632 * Mark this adjustment run so we could avoid repeating a full update
633 * again needlessly in case the pane has more than one graph.
634 */
635 pane->dyn_ceil_last_ran = gr->index;
636 }
637
638 static struct hud_pane *
639 hud_pane_create(unsigned x1, unsigned y1, unsigned x2, unsigned y2,
640 unsigned period, uint64_t max_value, uint64_t ceiling,
641 boolean dyn_ceiling)
642 {
643 struct hud_pane *pane = CALLOC_STRUCT(hud_pane);
644
645 if (!pane)
646 return NULL;
647
648 pane->x1 = x1;
649 pane->y1 = y1;
650 pane->x2 = x2;
651 pane->y2 = y2;
652 pane->inner_x1 = x1 + 1;
653 pane->inner_x2 = x2 - 1;
654 pane->inner_y1 = y1 + 1;
655 pane->inner_y2 = y2 - 1;
656 pane->inner_width = pane->inner_x2 - pane->inner_x1;
657 pane->inner_height = pane->inner_y2 - pane->inner_y1;
658 pane->period = period;
659 pane->max_num_vertices = (x2 - x1 + 2) / 2;
660 pane->ceiling = ceiling;
661 pane->dyn_ceiling = dyn_ceiling;
662 pane->dyn_ceil_last_ran = 0;
663 pane->initial_max_value = max_value;
664 hud_pane_set_max_value(pane, max_value);
665 LIST_INITHEAD(&pane->graph_list);
666 return pane;
667 }
668
669 /**
670 * Add a graph to an existing pane.
671 * One pane can contain multiple graphs over each other.
672 */
673 void
674 hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr)
675 {
676 static const float colors[][3] = {
677 {0, 1, 0},
678 {1, 0, 0},
679 {0, 1, 1},
680 {1, 0, 1},
681 {1, 1, 0},
682 {0.5, 0.5, 1},
683 {0.5, 0.5, 0.5},
684 };
685 char *name = gr->name;
686
687 /* replace '-' with a space */
688 while (*name) {
689 if (*name == '-')
690 *name = ' ';
691 name++;
692 }
693
694 assert(pane->num_graphs < Elements(colors));
695 gr->vertices = MALLOC(pane->max_num_vertices * sizeof(float) * 2);
696 gr->color[0] = colors[pane->num_graphs][0];
697 gr->color[1] = colors[pane->num_graphs][1];
698 gr->color[2] = colors[pane->num_graphs][2];
699 gr->pane = pane;
700 LIST_ADDTAIL(&gr->head, &pane->graph_list);
701 pane->num_graphs++;
702 }
703
704 void
705 hud_graph_add_value(struct hud_graph *gr, uint64_t value)
706 {
707 gr->current_value = value;
708 value = value > gr->pane->ceiling ? gr->pane->ceiling : value;
709
710 if (gr->index == gr->pane->max_num_vertices) {
711 gr->vertices[0] = 0;
712 gr->vertices[1] = gr->vertices[(gr->index-1)*2+1];
713 gr->index = 1;
714 }
715 gr->vertices[(gr->index)*2+0] = (float) (gr->index * 2);
716 gr->vertices[(gr->index)*2+1] = (float) value;
717 gr->index++;
718
719 if (gr->num_vertices < gr->pane->max_num_vertices) {
720 gr->num_vertices++;
721 }
722
723 if (gr->pane->dyn_ceiling == true) {
724 hud_pane_update_dyn_ceiling(gr, gr->pane);
725 }
726 if (value > gr->pane->max_value) {
727 hud_pane_set_max_value(gr->pane, value);
728 }
729 }
730
731 static void
732 hud_graph_destroy(struct hud_graph *graph)
733 {
734 FREE(graph->vertices);
735 if (graph->free_query_data)
736 graph->free_query_data(graph->query_data);
737 FREE(graph);
738 }
739
740 /**
741 * Read a string from the environment variable.
742 * The separators "+", ",", ":", and ";" terminate the string.
743 * Return the number of read characters.
744 */
745 static int
746 parse_string(const char *s, char *out)
747 {
748 int i;
749
750 for (i = 0; *s && *s != '+' && *s != ',' && *s != ':' && *s != ';';
751 s++, out++, i++)
752 *out = *s;
753
754 *out = 0;
755
756 if (*s && !i)
757 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) while "
758 "parsing a string\n", *s, *s);
759 return i;
760 }
761
762 static char *
763 read_pane_settings(char *str, unsigned * const x, unsigned * const y,
764 unsigned * const width, unsigned * const height,
765 uint64_t * const ceiling, boolean * const dyn_ceiling)
766 {
767 char *ret = str;
768 unsigned tmp;
769
770 while (*str == '.') {
771 ++str;
772 switch (*str) {
773 case 'x':
774 ++str;
775 *x = strtoul(str, &ret, 10);
776 str = ret;
777 break;
778
779 case 'y':
780 ++str;
781 *y = strtoul(str, &ret, 10);
782 str = ret;
783 break;
784
785 case 'w':
786 ++str;
787 tmp = strtoul(str, &ret, 10);
788 *width = tmp > 80 ? tmp : 80; /* 80 is chosen arbitrarily */
789 str = ret;
790 break;
791
792 /*
793 * Prevent setting height to less than 50. If the height is set to less,
794 * the text of the Y axis labels on the graph will start overlapping.
795 */
796 case 'h':
797 ++str;
798 tmp = strtoul(str, &ret, 10);
799 *height = tmp > 50 ? tmp : 50;
800 str = ret;
801 break;
802
803 case 'c':
804 ++str;
805 tmp = strtoul(str, &ret, 10);
806 *ceiling = tmp > 10 ? tmp : 10;
807 str = ret;
808 break;
809
810 case 'd':
811 ++str;
812 ret = str;
813 *dyn_ceiling = true;
814 break;
815
816 default:
817 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *str);
818 }
819
820 }
821
822 return ret;
823 }
824
825 static boolean
826 has_occlusion_query(struct pipe_screen *screen)
827 {
828 return screen->get_param(screen, PIPE_CAP_OCCLUSION_QUERY) != 0;
829 }
830
831 static boolean
832 has_streamout(struct pipe_screen *screen)
833 {
834 return screen->get_param(screen, PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS) != 0;
835 }
836
837 static boolean
838 has_pipeline_stats_query(struct pipe_screen *screen)
839 {
840 return screen->get_param(screen, PIPE_CAP_QUERY_PIPELINE_STATISTICS) != 0;
841 }
842
843 static void
844 hud_parse_env_var(struct hud_context *hud, const char *env)
845 {
846 unsigned num, i;
847 char name_a[256], s[256];
848 char *name;
849 struct hud_pane *pane = NULL;
850 unsigned x = 10, y = 10;
851 unsigned width = 251, height = 100;
852 unsigned period = 500 * 1000; /* default period (1/2 second) */
853 uint64_t ceiling = UINT64_MAX;
854 unsigned column_width = 251;
855 boolean dyn_ceiling = false;
856 const char *period_env;
857
858 /*
859 * The GALLIUM_HUD_PERIOD env var sets the graph update rate.
860 * The env var is in seconds (a float).
861 * Zero means update after every frame.
862 */
863 period_env = getenv("GALLIUM_HUD_PERIOD");
864 if (period_env) {
865 float p = (float) atof(period_env);
866 if (p >= 0.0f) {
867 period = (unsigned) (p * 1000 * 1000);
868 }
869 }
870
871 while ((num = parse_string(env, name_a)) != 0) {
872 env += num;
873
874 /* check for explicit location, size and etc. settings */
875 name = read_pane_settings(name_a, &x, &y, &width, &height, &ceiling,
876 &dyn_ceiling);
877
878 /*
879 * Keep track of overall column width to avoid pane overlapping in case
880 * later we create a new column while the bottom pane in the current
881 * column is less wide than the rest of the panes in it.
882 */
883 column_width = width > column_width ? width : column_width;
884
885 if (!pane) {
886 pane = hud_pane_create(x, y, x + width, y + height, period, 10,
887 ceiling, dyn_ceiling);
888 if (!pane)
889 return;
890 }
891
892 /* Add a graph. */
893 /* IF YOU CHANGE THIS, UPDATE print_help! */
894 if (strcmp(name, "fps") == 0) {
895 hud_fps_graph_install(pane);
896 }
897 else if (strcmp(name, "cpu") == 0) {
898 hud_cpu_graph_install(pane, ALL_CPUS);
899 }
900 else if (sscanf(name, "cpu%u%s", &i, s) == 1) {
901 hud_cpu_graph_install(pane, i);
902 }
903 else if (strcmp(name, "samples-passed") == 0 &&
904 has_occlusion_query(hud->pipe->screen)) {
905 hud_pipe_query_install(&hud->batch_query, pane, hud->pipe,
906 "samples-passed",
907 PIPE_QUERY_OCCLUSION_COUNTER, 0, 0,
908 PIPE_DRIVER_QUERY_TYPE_UINT64,
909 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
910 0);
911 }
912 else if (strcmp(name, "primitives-generated") == 0 &&
913 has_streamout(hud->pipe->screen)) {
914 hud_pipe_query_install(&hud->batch_query, pane, hud->pipe,
915 "primitives-generated",
916 PIPE_QUERY_PRIMITIVES_GENERATED, 0, 0,
917 PIPE_DRIVER_QUERY_TYPE_UINT64,
918 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
919 0);
920 }
921 else {
922 boolean processed = FALSE;
923
924 /* pipeline statistics queries */
925 if (has_pipeline_stats_query(hud->pipe->screen)) {
926 static const char *pipeline_statistics_names[] =
927 {
928 "ia-vertices",
929 "ia-primitives",
930 "vs-invocations",
931 "gs-invocations",
932 "gs-primitives",
933 "clipper-invocations",
934 "clipper-primitives-generated",
935 "ps-invocations",
936 "hs-invocations",
937 "ds-invocations",
938 "cs-invocations"
939 };
940 for (i = 0; i < Elements(pipeline_statistics_names); ++i)
941 if (strcmp(name, pipeline_statistics_names[i]) == 0)
942 break;
943 if (i < Elements(pipeline_statistics_names)) {
944 hud_pipe_query_install(&hud->batch_query, pane, hud->pipe, name,
945 PIPE_QUERY_PIPELINE_STATISTICS, i,
946 0, PIPE_DRIVER_QUERY_TYPE_UINT64,
947 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
948 0);
949 processed = TRUE;
950 }
951 }
952
953 /* driver queries */
954 if (!processed) {
955 if (!hud_driver_query_install(&hud->batch_query, pane, hud->pipe,
956 name)) {
957 fprintf(stderr, "gallium_hud: unknown driver query '%s'\n", name);
958 }
959 }
960 }
961
962 if (*env == ':') {
963 env++;
964
965 if (!pane) {
966 fprintf(stderr, "gallium_hud: syntax error: unexpected ':', "
967 "expected a name\n");
968 break;
969 }
970
971 num = parse_string(env, s);
972 env += num;
973
974 if (num && sscanf(s, "%u", &i) == 1) {
975 hud_pane_set_max_value(pane, i);
976 pane->initial_max_value = i;
977 }
978 else {
979 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) "
980 "after ':'\n", *env, *env);
981 }
982 }
983
984 if (*env == 0)
985 break;
986
987 /* parse a separator */
988 switch (*env) {
989 case '+':
990 env++;
991 break;
992
993 case ',':
994 env++;
995 if (!pane)
996 break;
997
998 y += height + hud->font.glyph_height * (pane->num_graphs + 2);
999 height = 100;
1000
1001 if (pane && pane->num_graphs) {
1002 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1003 pane = NULL;
1004 }
1005 break;
1006
1007 case ';':
1008 env++;
1009 y = 10;
1010 x += column_width + hud->font.glyph_width * 7;
1011 height = 100;
1012
1013 if (pane && pane->num_graphs) {
1014 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1015 pane = NULL;
1016 }
1017
1018 /* Starting a new column; reset column width. */
1019 column_width = 251;
1020 break;
1021
1022 default:
1023 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *env);
1024 }
1025
1026 /* Reset to defaults for the next pane in case these were modified. */
1027 width = 251;
1028 ceiling = UINT64_MAX;
1029 dyn_ceiling = false;
1030
1031 }
1032
1033 if (pane) {
1034 if (pane->num_graphs) {
1035 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1036 }
1037 else {
1038 FREE(pane);
1039 }
1040 }
1041 }
1042
1043 static void
1044 print_help(struct pipe_screen *screen)
1045 {
1046 int i, num_queries, num_cpus = hud_get_num_cpus();
1047
1048 puts("Syntax: GALLIUM_HUD=name1[+name2][...][:value1][,nameI...][;nameJ...]");
1049 puts("");
1050 puts(" Names are identifiers of data sources which will be drawn as graphs");
1051 puts(" in panes. Multiple graphs can be drawn in the same pane.");
1052 puts(" There can be multiple panes placed in rows and columns.");
1053 puts("");
1054 puts(" '+' separates names which will share a pane.");
1055 puts(" ':[value]' specifies the initial maximum value of the Y axis");
1056 puts(" for the given pane.");
1057 puts(" ',' creates a new pane below the last one.");
1058 puts(" ';' creates a new pane at the top of the next column.");
1059 puts("");
1060 puts(" Example: GALLIUM_HUD=\"cpu,fps;primitives-generated\"");
1061 puts("");
1062 puts(" Additionally, by prepending '.[identifier][value]' modifiers to");
1063 puts(" a name, it is possible to explicitly set the location and size");
1064 puts(" of a pane, along with limiting overall maximum value of the");
1065 puts(" Y axis and activating dynamic readjustment of the Y axis.");
1066 puts(" Several modifiers may be applied to the same pane simultaneously.");
1067 puts("");
1068 puts(" 'x[value]' sets the location of the pane on the x axis relative");
1069 puts(" to the upper-left corner of the viewport, in pixels.");
1070 puts(" 'y[value]' sets the location of the pane on the y axis relative");
1071 puts(" to the upper-left corner of the viewport, in pixels.");
1072 puts(" 'w[value]' sets width of the graph pixels.");
1073 puts(" 'h[value]' sets height of the graph in pixels.");
1074 puts(" 'c[value]' sets the ceiling of the value of the Y axis.");
1075 puts(" If the graph needs to draw values higher than");
1076 puts(" the ceiling allows, the value is clamped.");
1077 puts(" 'd' activates dynamic Y axis readjustment to set the value of");
1078 puts(" the Y axis to match the highest value still visible in the graph.");
1079 puts("");
1080 puts(" If 'c' and 'd' modifiers are used simultaneously, both are in effect:");
1081 puts(" the Y axis does not go above the restriction imposed by 'c' while");
1082 puts(" still adjusting the value of the Y axis down when appropriate.");
1083 puts("");
1084 puts(" Example: GALLIUM_HUD=\".w256.h64.x1600.y520.d.c1000fps+cpu,.datom-count\"");
1085 puts("");
1086 puts(" Available names:");
1087 puts(" fps");
1088 puts(" cpu");
1089
1090 for (i = 0; i < num_cpus; i++)
1091 printf(" cpu%i\n", i);
1092
1093 if (has_occlusion_query(screen))
1094 puts(" samples-passed");
1095 if (has_streamout(screen))
1096 puts(" primitives-generated");
1097
1098 if (has_pipeline_stats_query(screen)) {
1099 puts(" ia-vertices");
1100 puts(" ia-primitives");
1101 puts(" vs-invocations");
1102 puts(" gs-invocations");
1103 puts(" gs-primitives");
1104 puts(" clipper-invocations");
1105 puts(" clipper-primitives-generated");
1106 puts(" ps-invocations");
1107 puts(" hs-invocations");
1108 puts(" ds-invocations");
1109 puts(" cs-invocations");
1110 }
1111
1112 if (screen->get_driver_query_info){
1113 boolean skipping = false;
1114 struct pipe_driver_query_info info;
1115 num_queries = screen->get_driver_query_info(screen, 0, NULL);
1116
1117 for (i = 0; i < num_queries; i++){
1118 screen->get_driver_query_info(screen, i, &info);
1119 if (info.flags & PIPE_DRIVER_QUERY_FLAG_DONT_LIST) {
1120 if (!skipping)
1121 puts(" ...");
1122 skipping = true;
1123 } else {
1124 printf(" %s\n", info.name);
1125 skipping = false;
1126 }
1127 }
1128 }
1129
1130 puts("");
1131 fflush(stdout);
1132 }
1133
1134 struct hud_context *
1135 hud_create(struct pipe_context *pipe, struct cso_context *cso)
1136 {
1137 struct hud_context *hud;
1138 struct pipe_sampler_view view_templ;
1139 unsigned i;
1140 const char *env = debug_get_option("GALLIUM_HUD", NULL);
1141 unsigned signo = debug_get_num_option("GALLIUM_HUD_TOGGLE_SIGNAL", 0);
1142 #ifdef PIPE_OS_UNIX
1143 static boolean sig_handled = FALSE;
1144 struct sigaction action = {};
1145 #endif
1146 huds_visible = debug_get_bool_option("GALLIUM_HUD_VISIBLE", TRUE);
1147
1148 if (!env || !*env)
1149 return NULL;
1150
1151 if (strcmp(env, "help") == 0) {
1152 print_help(pipe->screen);
1153 return NULL;
1154 }
1155
1156 hud = CALLOC_STRUCT(hud_context);
1157 if (!hud)
1158 return NULL;
1159
1160 hud->pipe = pipe;
1161 hud->cso = cso;
1162 hud->uploader = u_upload_create(pipe, 256 * 1024,
1163 PIPE_BIND_VERTEX_BUFFER, PIPE_USAGE_STREAM);
1164
1165 /* font */
1166 if (!util_font_create(pipe, UTIL_FONT_FIXED_8X13, &hud->font)) {
1167 u_upload_destroy(hud->uploader);
1168 FREE(hud);
1169 return NULL;
1170 }
1171
1172 /* blend state */
1173 hud->alpha_blend.rt[0].colormask = PIPE_MASK_RGBA;
1174 hud->alpha_blend.rt[0].blend_enable = 1;
1175 hud->alpha_blend.rt[0].rgb_func = PIPE_BLEND_ADD;
1176 hud->alpha_blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_SRC_ALPHA;
1177 hud->alpha_blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_INV_SRC_ALPHA;
1178 hud->alpha_blend.rt[0].alpha_func = PIPE_BLEND_ADD;
1179 hud->alpha_blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ZERO;
1180 hud->alpha_blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
1181
1182 /* fragment shader */
1183 hud->fs_color =
1184 util_make_fragment_passthrough_shader(pipe,
1185 TGSI_SEMANTIC_COLOR,
1186 TGSI_INTERPOLATE_CONSTANT,
1187 TRUE);
1188
1189 {
1190 /* Read a texture and do .xxxx swizzling. */
1191 static const char *fragment_shader_text = {
1192 "FRAG\n"
1193 "DCL IN[0], GENERIC[0], LINEAR\n"
1194 "DCL SAMP[0]\n"
1195 "DCL SVIEW[0], RECT, FLOAT\n"
1196 "DCL OUT[0], COLOR[0]\n"
1197 "DCL TEMP[0]\n"
1198
1199 "TEX TEMP[0], IN[0], SAMP[0], RECT\n"
1200 "MOV OUT[0], TEMP[0].xxxx\n"
1201 "END\n"
1202 };
1203
1204 struct tgsi_token tokens[1000];
1205 struct pipe_shader_state state = {tokens};
1206
1207 if (!tgsi_text_translate(fragment_shader_text, tokens, Elements(tokens))) {
1208 assert(0);
1209 pipe_resource_reference(&hud->font.texture, NULL);
1210 u_upload_destroy(hud->uploader);
1211 FREE(hud);
1212 return NULL;
1213 }
1214
1215 hud->fs_text = pipe->create_fs_state(pipe, &state);
1216 }
1217
1218 /* rasterizer */
1219 hud->rasterizer.half_pixel_center = 1;
1220 hud->rasterizer.bottom_edge_rule = 1;
1221 hud->rasterizer.depth_clip = 1;
1222 hud->rasterizer.line_width = 1;
1223 hud->rasterizer.line_last_pixel = 1;
1224
1225 /* vertex shader */
1226 {
1227 static const char *vertex_shader_text = {
1228 "VERT\n"
1229 "DCL IN[0..1]\n"
1230 "DCL OUT[0], POSITION\n"
1231 "DCL OUT[1], COLOR[0]\n" /* color */
1232 "DCL OUT[2], GENERIC[0]\n" /* texcoord */
1233 /* [0] = color,
1234 * [1] = (2/fb_width, 2/fb_height, xoffset, yoffset)
1235 * [2] = (xscale, yscale, 0, 0) */
1236 "DCL CONST[0..2]\n"
1237 "DCL TEMP[0]\n"
1238 "IMM[0] FLT32 { -1, 0, 0, 1 }\n"
1239
1240 /* v = in * (xscale, yscale) + (xoffset, yoffset) */
1241 "MAD TEMP[0].xy, IN[0], CONST[2].xyyy, CONST[1].zwww\n"
1242 /* pos = v * (2 / fb_width, 2 / fb_height) - (1, 1) */
1243 "MAD OUT[0].xy, TEMP[0], CONST[1].xyyy, IMM[0].xxxx\n"
1244 "MOV OUT[0].zw, IMM[0]\n"
1245
1246 "MOV OUT[1], CONST[0]\n"
1247 "MOV OUT[2], IN[1]\n"
1248 "END\n"
1249 };
1250
1251 struct tgsi_token tokens[1000];
1252 struct pipe_shader_state state = {tokens};
1253
1254 if (!tgsi_text_translate(vertex_shader_text, tokens, Elements(tokens))) {
1255 assert(0);
1256 pipe_resource_reference(&hud->font.texture, NULL);
1257 u_upload_destroy(hud->uploader);
1258 FREE(hud);
1259 return NULL;
1260 }
1261
1262 hud->vs = pipe->create_vs_state(pipe, &state);
1263 }
1264
1265 /* vertex elements */
1266 for (i = 0; i < 2; i++) {
1267 hud->velems[i].src_offset = i * 2 * sizeof(float);
1268 hud->velems[i].src_format = PIPE_FORMAT_R32G32_FLOAT;
1269 hud->velems[i].vertex_buffer_index = cso_get_aux_vertex_buffer_slot(cso);
1270 }
1271
1272 /* sampler view */
1273 u_sampler_view_default_template(
1274 &view_templ, hud->font.texture, hud->font.texture->format);
1275 hud->font_sampler_view = pipe->create_sampler_view(pipe, hud->font.texture,
1276 &view_templ);
1277
1278 /* sampler state (for font drawing) */
1279 hud->font_sampler_state.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1280 hud->font_sampler_state.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1281 hud->font_sampler_state.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1282 hud->font_sampler_state.normalized_coords = 0;
1283
1284 /* constants */
1285 hud->constbuf.buffer_size = sizeof(hud->constants);
1286 hud->constbuf.user_buffer = &hud->constants;
1287
1288 LIST_INITHEAD(&hud->pane_list);
1289
1290 /* setup sig handler once for all hud contexts */
1291 #ifdef PIPE_OS_UNIX
1292 if (!sig_handled && signo != 0) {
1293 action.sa_sigaction = &signal_visible_handler;
1294 action.sa_flags = SA_SIGINFO;
1295
1296 if (signo >= NSIG)
1297 fprintf(stderr, "gallium_hud: invalid signal %u\n", signo);
1298 else if (sigaction(signo, &action, NULL) < 0)
1299 fprintf(stderr, "gallium_hud: unable to set handler for signal %u\n", signo);
1300 fflush(stderr);
1301
1302 sig_handled = TRUE;
1303 }
1304 #endif
1305
1306 hud_parse_env_var(hud, env);
1307 return hud;
1308 }
1309
1310 void
1311 hud_destroy(struct hud_context *hud)
1312 {
1313 struct pipe_context *pipe = hud->pipe;
1314 struct hud_pane *pane, *pane_tmp;
1315 struct hud_graph *graph, *graph_tmp;
1316
1317 LIST_FOR_EACH_ENTRY_SAFE(pane, pane_tmp, &hud->pane_list, head) {
1318 LIST_FOR_EACH_ENTRY_SAFE(graph, graph_tmp, &pane->graph_list, head) {
1319 LIST_DEL(&graph->head);
1320 hud_graph_destroy(graph);
1321 }
1322 LIST_DEL(&pane->head);
1323 FREE(pane);
1324 }
1325
1326 hud_batch_query_cleanup(&hud->batch_query);
1327 pipe->delete_fs_state(pipe, hud->fs_color);
1328 pipe->delete_fs_state(pipe, hud->fs_text);
1329 pipe->delete_vs_state(pipe, hud->vs);
1330 pipe_sampler_view_reference(&hud->font_sampler_view, NULL);
1331 pipe_resource_reference(&hud->font.texture, NULL);
1332 u_upload_destroy(hud->uploader);
1333 FREE(hud);
1334 }