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