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