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