gallium/hud: call u_upload_alloc only once
[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 <inttypes.h>
37 #include <signal.h>
38 #include <stdio.h>
39
40 #include "hud/hud_context.h"
41 #include "hud/hud_private.h"
42 #include "hud/font.h"
43
44 #include "cso_cache/cso_context.h"
45 #include "util/u_draw_quad.h"
46 #include "util/u_format.h"
47 #include "util/u_inlines.h"
48 #include "util/u_memory.h"
49 #include "util/u_math.h"
50 #include "util/u_sampler.h"
51 #include "util/u_simple_shaders.h"
52 #include "util/u_string.h"
53 #include "util/u_upload_mgr.h"
54 #include "tgsi/tgsi_text.h"
55 #include "tgsi/tgsi_dump.h"
56
57 /* Control the visibility of all HUD contexts */
58 static boolean huds_visible = TRUE;
59
60 struct hud_context {
61 struct pipe_context *pipe;
62 struct cso_context *cso;
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 unsigned buffer_size;
101 } text, bg, whitelines;
102
103 bool has_srgb;
104 };
105
106 #ifdef PIPE_OS_UNIX
107 static void
108 signal_visible_handler(int sig, siginfo_t *siginfo, void *context)
109 {
110 huds_visible = !huds_visible;
111 }
112 #endif
113
114 static void
115 hud_draw_colored_prims(struct hud_context *hud, unsigned prim,
116 float *buffer, unsigned num_vertices,
117 float r, float g, float b, float a,
118 int xoffset, int yoffset, float yscale)
119 {
120 struct cso_context *cso = hud->cso;
121 struct pipe_vertex_buffer vbuffer = {0};
122
123 hud->constants.color[0] = r;
124 hud->constants.color[1] = g;
125 hud->constants.color[2] = b;
126 hud->constants.color[3] = a;
127 hud->constants.translate[0] = (float) xoffset;
128 hud->constants.translate[1] = (float) yoffset;
129 hud->constants.scale[0] = 1;
130 hud->constants.scale[1] = yscale;
131 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
132
133 vbuffer.user_buffer = buffer;
134 vbuffer.stride = 2 * sizeof(float);
135
136 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso),
137 1, &vbuffer);
138 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
139 cso_draw_arrays(cso, prim, 0, num_vertices);
140 }
141
142 static void
143 hud_draw_colored_quad(struct hud_context *hud, unsigned prim,
144 unsigned x1, unsigned y1, unsigned x2, unsigned y2,
145 float r, float g, float b, float a)
146 {
147 float buffer[] = {
148 (float) x1, (float) y1,
149 (float) x1, (float) y2,
150 (float) x2, (float) y2,
151 (float) x2, (float) y1,
152 };
153
154 hud_draw_colored_prims(hud, prim, buffer, 4, r, g, b, a, 0, 0, 1);
155 }
156
157 static void
158 hud_draw_background_quad(struct hud_context *hud,
159 unsigned x1, unsigned y1, unsigned x2, unsigned y2)
160 {
161 float *vertices = hud->bg.vertices + hud->bg.num_vertices*2;
162 unsigned num = 0;
163
164 assert(hud->bg.num_vertices + 4 <= hud->bg.max_num_vertices);
165
166 vertices[num++] = (float) x1;
167 vertices[num++] = (float) y1;
168
169 vertices[num++] = (float) x1;
170 vertices[num++] = (float) y2;
171
172 vertices[num++] = (float) x2;
173 vertices[num++] = (float) y2;
174
175 vertices[num++] = (float) x2;
176 vertices[num++] = (float) y1;
177
178 hud->bg.num_vertices += num/2;
179 }
180
181 static void
182 hud_draw_string(struct hud_context *hud, unsigned x, unsigned y,
183 const char *str, ...)
184 {
185 char buf[256];
186 char *s = buf;
187 float *vertices = hud->text.vertices + hud->text.num_vertices*4;
188 unsigned num = 0;
189
190 va_list ap;
191 va_start(ap, str);
192 util_vsnprintf(buf, sizeof(buf), str, ap);
193 va_end(ap);
194
195 if (!*s)
196 return;
197
198 hud_draw_background_quad(hud,
199 x, y,
200 x + strlen(buf)*hud->font.glyph_width,
201 y + hud->font.glyph_height);
202
203 while (*s) {
204 unsigned x1 = x;
205 unsigned y1 = y;
206 unsigned x2 = x + hud->font.glyph_width;
207 unsigned y2 = y + hud->font.glyph_height;
208 unsigned tx1 = (*s % 16) * hud->font.glyph_width;
209 unsigned ty1 = (*s / 16) * hud->font.glyph_height;
210 unsigned tx2 = tx1 + hud->font.glyph_width;
211 unsigned ty2 = ty1 + hud->font.glyph_height;
212
213 if (*s == ' ') {
214 x += hud->font.glyph_width;
215 s++;
216 continue;
217 }
218
219 assert(hud->text.num_vertices + num/4 + 4 <= hud->text.max_num_vertices);
220
221 vertices[num++] = (float) x1;
222 vertices[num++] = (float) y1;
223 vertices[num++] = (float) tx1;
224 vertices[num++] = (float) ty1;
225
226 vertices[num++] = (float) x1;
227 vertices[num++] = (float) y2;
228 vertices[num++] = (float) tx1;
229 vertices[num++] = (float) ty2;
230
231 vertices[num++] = (float) x2;
232 vertices[num++] = (float) y2;
233 vertices[num++] = (float) tx2;
234 vertices[num++] = (float) ty2;
235
236 vertices[num++] = (float) x2;
237 vertices[num++] = (float) y1;
238 vertices[num++] = (float) tx2;
239 vertices[num++] = (float) ty1;
240
241 x += hud->font.glyph_width;
242 s++;
243 }
244
245 hud->text.num_vertices += num/4;
246 }
247
248 static void
249 number_to_human_readable(uint64_t num, enum pipe_driver_query_type type,
250 char *out)
251 {
252 static const char *byte_units[] =
253 {" B", " KB", " MB", " GB", " TB", " PB", " EB"};
254 static const char *metric_units[] =
255 {"", " k", " M", " G", " T", " P", " E"};
256 static const char *time_units[] =
257 {" us", " ms", " s"}; /* based on microseconds */
258 static const char *hz_units[] =
259 {" Hz", " KHz", " MHz", " GHz"};
260 static const char *percent_units[] = {"%"};
261 static const char *dbm_units[] = {" (-dBm)"};
262 static const char *temperature_units[] = {" C"};
263 static const char *volt_units[] = {" mV", " V"};
264 static const char *amp_units[] = {" mA", " A"};
265 static const char *watt_units[] = {" mW", " W"};
266
267 const char **units;
268 unsigned max_unit;
269 double divisor = (type == PIPE_DRIVER_QUERY_TYPE_BYTES) ? 1024 : 1000;
270 unsigned unit = 0;
271 double d = num;
272
273 switch (type) {
274 case PIPE_DRIVER_QUERY_TYPE_MICROSECONDS:
275 max_unit = ARRAY_SIZE(time_units)-1;
276 units = time_units;
277 break;
278 case PIPE_DRIVER_QUERY_TYPE_VOLTS:
279 max_unit = ARRAY_SIZE(volt_units)-1;
280 units = volt_units;
281 break;
282 case PIPE_DRIVER_QUERY_TYPE_AMPS:
283 max_unit = ARRAY_SIZE(amp_units)-1;
284 units = amp_units;
285 break;
286 case PIPE_DRIVER_QUERY_TYPE_DBM:
287 max_unit = ARRAY_SIZE(dbm_units)-1;
288 units = dbm_units;
289 break;
290 case PIPE_DRIVER_QUERY_TYPE_TEMPERATURE:
291 max_unit = ARRAY_SIZE(temperature_units)-1;
292 units = temperature_units;
293 break;
294 case PIPE_DRIVER_QUERY_TYPE_PERCENTAGE:
295 max_unit = ARRAY_SIZE(percent_units)-1;
296 units = percent_units;
297 break;
298 case PIPE_DRIVER_QUERY_TYPE_BYTES:
299 max_unit = ARRAY_SIZE(byte_units)-1;
300 units = byte_units;
301 break;
302 case PIPE_DRIVER_QUERY_TYPE_HZ:
303 max_unit = ARRAY_SIZE(hz_units)-1;
304 units = hz_units;
305 break;
306 case PIPE_DRIVER_QUERY_TYPE_WATTS:
307 max_unit = ARRAY_SIZE(watt_units)-1;
308 units = watt_units;
309 break;
310 default:
311 max_unit = ARRAY_SIZE(metric_units)-1;
312 units = metric_units;
313 }
314
315 while (d > divisor && unit < max_unit) {
316 d /= divisor;
317 unit++;
318 }
319
320 /* Round to 3 decimal places so as not to print trailing zeros. */
321 if (d*1000 != (int)(d*1000))
322 d = round(d * 1000) / 1000;
323
324 /* Show at least 4 digits with at most 3 decimal places, but not zeros. */
325 if (d >= 1000 || d == (int)d)
326 sprintf(out, "%.0f%s", d, units[unit]);
327 else if (d >= 100 || d*10 == (int)(d*10))
328 sprintf(out, "%.1f%s", d, units[unit]);
329 else if (d >= 10 || d*100 == (int)(d*100))
330 sprintf(out, "%.2f%s", d, units[unit]);
331 else
332 sprintf(out, "%.3f%s", d, units[unit]);
333 }
334
335 static void
336 hud_draw_graph_line_strip(struct hud_context *hud, const struct hud_graph *gr,
337 unsigned xoffset, unsigned yoffset, float yscale)
338 {
339 if (gr->num_vertices <= 1)
340 return;
341
342 assert(gr->index <= gr->num_vertices);
343
344 hud_draw_colored_prims(hud, PIPE_PRIM_LINE_STRIP,
345 gr->vertices, gr->index,
346 gr->color[0], gr->color[1], gr->color[2], 1,
347 xoffset + (gr->pane->max_num_vertices - gr->index - 1) * 2 - 1,
348 yoffset, yscale);
349
350 if (gr->num_vertices <= gr->index)
351 return;
352
353 hud_draw_colored_prims(hud, PIPE_PRIM_LINE_STRIP,
354 gr->vertices + gr->index*2,
355 gr->num_vertices - gr->index,
356 gr->color[0], gr->color[1], gr->color[2], 1,
357 xoffset - gr->index*2 - 1, yoffset, yscale);
358 }
359
360 static void
361 hud_pane_accumulate_vertices(struct hud_context *hud,
362 const struct hud_pane *pane)
363 {
364 struct hud_graph *gr;
365 float *line_verts = hud->whitelines.vertices + hud->whitelines.num_vertices*2;
366 unsigned i, num = 0;
367 char str[32];
368 const unsigned last_line = pane->last_line;
369
370 /* draw background */
371 hud_draw_background_quad(hud,
372 pane->x1, pane->y1,
373 pane->x2, pane->y2);
374
375 /* draw numbers on the right-hand side */
376 for (i = 0; i <= last_line; i++) {
377 unsigned x = pane->x2 + 2;
378 unsigned y = pane->inner_y1 +
379 pane->inner_height * (last_line - i) / last_line -
380 hud->font.glyph_height / 2;
381
382 number_to_human_readable(pane->max_value * i / last_line,
383 pane->type, str);
384 hud_draw_string(hud, x, y, "%s", str);
385 }
386
387 /* draw info below the pane */
388 i = 0;
389 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
390 unsigned x = pane->x1 + 2;
391 unsigned y = pane->y2 + 2 + i*hud->font.glyph_height;
392
393 number_to_human_readable(gr->current_value, pane->type, str);
394 hud_draw_string(hud, x, y, " %s: %s", gr->name, str);
395 i++;
396 }
397
398 /* draw border */
399 assert(hud->whitelines.num_vertices + num/2 + 8 <= hud->whitelines.max_num_vertices);
400 line_verts[num++] = (float) pane->x1;
401 line_verts[num++] = (float) pane->y1;
402 line_verts[num++] = (float) pane->x2;
403 line_verts[num++] = (float) pane->y1;
404
405 line_verts[num++] = (float) pane->x2;
406 line_verts[num++] = (float) pane->y1;
407 line_verts[num++] = (float) pane->x2;
408 line_verts[num++] = (float) pane->y2;
409
410 line_verts[num++] = (float) pane->x1;
411 line_verts[num++] = (float) pane->y2;
412 line_verts[num++] = (float) pane->x2;
413 line_verts[num++] = (float) pane->y2;
414
415 line_verts[num++] = (float) pane->x1;
416 line_verts[num++] = (float) pane->y1;
417 line_verts[num++] = (float) pane->x1;
418 line_verts[num++] = (float) pane->y2;
419
420 /* draw horizontal lines inside the graph */
421 for (i = 0; i <= last_line; i++) {
422 float y = round((pane->max_value * i / (double)last_line) *
423 pane->yscale + pane->inner_y2);
424
425 assert(hud->whitelines.num_vertices + num/2 + 2 <= hud->whitelines.max_num_vertices);
426 line_verts[num++] = pane->x1;
427 line_verts[num++] = y;
428 line_verts[num++] = pane->x2;
429 line_verts[num++] = y;
430 }
431
432 hud->whitelines.num_vertices += num/2;
433 }
434
435 static void
436 hud_pane_draw_colored_objects(struct hud_context *hud,
437 const struct hud_pane *pane)
438 {
439 struct hud_graph *gr;
440 unsigned i;
441
442 /* draw colored quads below the pane */
443 i = 0;
444 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
445 unsigned x = pane->x1 + 2;
446 unsigned y = pane->y2 + 2 + i*hud->font.glyph_height;
447
448 hud_draw_colored_quad(hud, PIPE_PRIM_QUADS, x + 1, y + 1, x + 12, y + 13,
449 gr->color[0], gr->color[1], gr->color[2], 1);
450 i++;
451 }
452
453 /* draw the line strips */
454 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
455 hud_draw_graph_line_strip(hud, gr, pane->inner_x1, pane->inner_y2, pane->yscale);
456 }
457 }
458
459 static void
460 hud_prepare_vertices(struct hud_context *hud, struct vertex_queue *v,
461 unsigned num_vertices, unsigned stride)
462 {
463 v->num_vertices = 0;
464 v->max_num_vertices = num_vertices;
465 v->vbuf.stride = stride;
466 v->buffer_size = stride * num_vertices;
467 }
468
469 /**
470 * Draw the HUD to the texture \p tex.
471 * The texture is usually the back buffer being displayed.
472 */
473 void
474 hud_draw(struct hud_context *hud, struct pipe_resource *tex)
475 {
476 struct cso_context *cso = hud->cso;
477 struct pipe_context *pipe = hud->pipe;
478 struct pipe_framebuffer_state fb;
479 struct pipe_surface surf_templ, *surf;
480 struct pipe_viewport_state viewport;
481 const struct pipe_sampler_state *sampler_states[] =
482 { &hud->font_sampler_state };
483 struct hud_pane *pane;
484 struct hud_graph *gr, *next;
485
486 if (!huds_visible)
487 return;
488
489 hud->fb_width = tex->width0;
490 hud->fb_height = tex->height0;
491 hud->constants.two_div_fb_width = 2.0f / hud->fb_width;
492 hud->constants.two_div_fb_height = 2.0f / hud->fb_height;
493
494 cso_save_state(cso, (CSO_BIT_FRAMEBUFFER |
495 CSO_BIT_SAMPLE_MASK |
496 CSO_BIT_MIN_SAMPLES |
497 CSO_BIT_BLEND |
498 CSO_BIT_DEPTH_STENCIL_ALPHA |
499 CSO_BIT_FRAGMENT_SHADER |
500 CSO_BIT_FRAGMENT_SAMPLER_VIEWS |
501 CSO_BIT_FRAGMENT_SAMPLERS |
502 CSO_BIT_RASTERIZER |
503 CSO_BIT_VIEWPORT |
504 CSO_BIT_STREAM_OUTPUTS |
505 CSO_BIT_GEOMETRY_SHADER |
506 CSO_BIT_TESSCTRL_SHADER |
507 CSO_BIT_TESSEVAL_SHADER |
508 CSO_BIT_VERTEX_SHADER |
509 CSO_BIT_VERTEX_ELEMENTS |
510 CSO_BIT_AUX_VERTEX_BUFFER_SLOT |
511 CSO_BIT_PAUSE_QUERIES |
512 CSO_BIT_RENDER_CONDITION));
513 cso_save_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
514
515 /* set states */
516 memset(&surf_templ, 0, sizeof(surf_templ));
517 surf_templ.format = tex->format;
518
519 /* Without this, AA lines look thinner if they are between 2 pixels
520 * because the alpha is 0.5 on both pixels. (it's ugly)
521 *
522 * sRGB makes the width of all AA lines look the same.
523 */
524 if (hud->has_srgb) {
525 enum pipe_format srgb_format = util_format_srgb(tex->format);
526
527 if (srgb_format != PIPE_FORMAT_NONE)
528 surf_templ.format = srgb_format;
529 }
530 surf = pipe->create_surface(pipe, tex, &surf_templ);
531
532 memset(&fb, 0, sizeof(fb));
533 fb.nr_cbufs = 1;
534 fb.cbufs[0] = surf;
535 fb.zsbuf = NULL;
536 fb.width = hud->fb_width;
537 fb.height = hud->fb_height;
538
539 viewport.scale[0] = 0.5f * hud->fb_width;
540 viewport.scale[1] = 0.5f * hud->fb_height;
541 viewport.scale[2] = 1.0f;
542 viewport.translate[0] = 0.5f * hud->fb_width;
543 viewport.translate[1] = 0.5f * hud->fb_height;
544 viewport.translate[2] = 0.0f;
545
546 cso_set_framebuffer(cso, &fb);
547 cso_set_sample_mask(cso, ~0);
548 cso_set_min_samples(cso, 1);
549 cso_set_depth_stencil_alpha(cso, &hud->dsa);
550 cso_set_rasterizer(cso, &hud->rasterizer);
551 cso_set_viewport(cso, &viewport);
552 cso_set_stream_outputs(cso, 0, NULL, NULL);
553 cso_set_tessctrl_shader_handle(cso, NULL);
554 cso_set_tesseval_shader_handle(cso, NULL);
555 cso_set_geometry_shader_handle(cso, NULL);
556 cso_set_vertex_shader_handle(cso, hud->vs);
557 cso_set_vertex_elements(cso, 2, hud->velems);
558 cso_set_render_condition(cso, NULL, FALSE, 0);
559 cso_set_sampler_views(cso, PIPE_SHADER_FRAGMENT, 1,
560 &hud->font_sampler_view);
561 cso_set_samplers(cso, PIPE_SHADER_FRAGMENT, 1, sampler_states);
562 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
563
564 /* prepare vertex buffers */
565 hud_prepare_vertices(hud, &hud->bg, 16 * 256, 2 * sizeof(float));
566 hud_prepare_vertices(hud, &hud->whitelines, 4 * 256, 2 * sizeof(float));
567 hud_prepare_vertices(hud, &hud->text, 16 * 1024, 4 * sizeof(float));
568
569 /* Allocate everything once and divide the storage into 3 portions
570 * manually, because u_upload_alloc can unmap memory from previous calls.
571 */
572 u_upload_alloc(hud->pipe->stream_uploader, 0,
573 hud->bg.buffer_size +
574 hud->whitelines.buffer_size +
575 hud->text.buffer_size,
576 16, &hud->bg.vbuf.buffer_offset, &hud->bg.vbuf.buffer,
577 (void**)&hud->bg.vertices);
578 pipe_resource_reference(&hud->whitelines.vbuf.buffer, hud->bg.vbuf.buffer);
579 pipe_resource_reference(&hud->text.vbuf.buffer, hud->bg.vbuf.buffer);
580
581 hud->whitelines.vbuf.buffer_offset = hud->bg.vbuf.buffer_offset +
582 hud->bg.buffer_size;
583 hud->whitelines.vertices = hud->bg.vertices +
584 hud->bg.buffer_size / sizeof(float);
585
586 hud->text.vbuf.buffer_offset = hud->whitelines.vbuf.buffer_offset +
587 hud->whitelines.buffer_size;
588 hud->text.vertices = hud->whitelines.vertices +
589 hud->whitelines.buffer_size / sizeof(float);
590
591 /* prepare all graphs */
592 hud_batch_query_update(hud->batch_query);
593
594 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
595 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
596 gr->query_new_value(gr);
597 }
598
599 if (pane->sort_items) {
600 LIST_FOR_EACH_ENTRY_SAFE(gr, next, &pane->graph_list, head) {
601 /* ignore the last one */
602 if (&gr->head == pane->graph_list.prev)
603 continue;
604
605 /* This is an incremental bubble sort, because we only do one pass
606 * per frame. It will eventually reach an equilibrium.
607 */
608 if (gr->current_value <
609 LIST_ENTRY(struct hud_graph, next, head)->current_value) {
610 LIST_DEL(&gr->head);
611 LIST_ADD(&gr->head, &next->head);
612 }
613 }
614 }
615
616 hud_pane_accumulate_vertices(hud, pane);
617 }
618
619 /* unmap the uploader's vertex buffer before drawing */
620 u_upload_unmap(pipe->stream_uploader);
621
622 /* draw accumulated vertices for background quads */
623 cso_set_blend(cso, &hud->alpha_blend);
624 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
625
626 if (hud->bg.num_vertices) {
627 hud->constants.color[0] = 0;
628 hud->constants.color[1] = 0;
629 hud->constants.color[2] = 0;
630 hud->constants.color[3] = 0.666f;
631 hud->constants.translate[0] = 0;
632 hud->constants.translate[1] = 0;
633 hud->constants.scale[0] = 1;
634 hud->constants.scale[1] = 1;
635
636 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
637 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
638 &hud->bg.vbuf);
639 cso_draw_arrays(cso, PIPE_PRIM_QUADS, 0, hud->bg.num_vertices);
640 }
641 pipe_resource_reference(&hud->bg.vbuf.buffer, NULL);
642
643 /* draw accumulated vertices for white lines */
644 cso_set_blend(cso, &hud->no_blend);
645
646 hud->constants.color[0] = 1;
647 hud->constants.color[1] = 1;
648 hud->constants.color[2] = 1;
649 hud->constants.color[3] = 1;
650 hud->constants.translate[0] = 0;
651 hud->constants.translate[1] = 0;
652 hud->constants.scale[0] = 1;
653 hud->constants.scale[1] = 1;
654 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
655
656 if (hud->whitelines.num_vertices) {
657 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
658 &hud->whitelines.vbuf);
659 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
660 cso_draw_arrays(cso, PIPE_PRIM_LINES, 0, hud->whitelines.num_vertices);
661 }
662 pipe_resource_reference(&hud->whitelines.vbuf.buffer, NULL);
663
664 /* draw accumulated vertices for text */
665 cso_set_blend(cso, &hud->alpha_blend);
666 if (hud->text.num_vertices) {
667 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
668 &hud->text.vbuf);
669 cso_set_fragment_shader_handle(hud->cso, hud->fs_text);
670 cso_draw_arrays(cso, PIPE_PRIM_QUADS, 0, hud->text.num_vertices);
671 }
672 pipe_resource_reference(&hud->text.vbuf.buffer, NULL);
673
674 /* draw the rest */
675 cso_set_rasterizer(cso, &hud->rasterizer_aa_lines);
676 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
677 if (pane)
678 hud_pane_draw_colored_objects(hud, pane);
679 }
680
681 cso_restore_state(cso);
682 cso_restore_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
683
684 pipe_surface_reference(&surf, NULL);
685
686 /* Start queries. */
687 hud_batch_query_begin(hud->batch_query);
688
689 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
690 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
691 if (gr->begin_query)
692 gr->begin_query(gr);
693 }
694 }
695 }
696
697 static void
698 fixup_bytes(enum pipe_driver_query_type type, int position, uint64_t *exp10)
699 {
700 if (type == PIPE_DRIVER_QUERY_TYPE_BYTES && position % 3 == 0)
701 *exp10 = (*exp10 / 1000) * 1024;
702 }
703
704 /**
705 * Set the maximum value for the Y axis of the graph.
706 * This scales the graph accordingly.
707 */
708 void
709 hud_pane_set_max_value(struct hud_pane *pane, uint64_t value)
710 {
711 double leftmost_digit;
712 uint64_t exp10;
713 int i;
714
715 /* The following code determines the max_value in the graph as well as
716 * how many describing lines are drawn. The max_value is rounded up,
717 * so that all drawn numbers are rounded for readability.
718 * We want to print multiples of a simple number instead of multiples of
719 * hard-to-read numbers like 1.753.
720 */
721
722 /* Find the left-most digit. */
723 exp10 = 1;
724 for (i = 0; value > 9 * exp10; i++) {
725 exp10 *= 10;
726 fixup_bytes(pane->type, i + 1, &exp10);
727 }
728
729 leftmost_digit = DIV_ROUND_UP(value, exp10);
730
731 /* Round 9 to 10. */
732 if (leftmost_digit == 9) {
733 leftmost_digit = 1;
734 exp10 *= 10;
735 fixup_bytes(pane->type, i + 1, &exp10);
736 }
737
738 switch ((unsigned)leftmost_digit) {
739 case 1:
740 pane->last_line = 5; /* lines in +1/5 increments */
741 break;
742 case 2:
743 pane->last_line = 8; /* lines in +1/4 increments. */
744 break;
745 case 3:
746 case 4:
747 pane->last_line = leftmost_digit * 2; /* lines in +1/2 increments */
748 break;
749 case 5:
750 case 6:
751 case 7:
752 case 8:
753 pane->last_line = leftmost_digit; /* lines in +1 increments */
754 break;
755 default:
756 assert(0);
757 }
758
759 /* Truncate {3,4} to {2.5, 3.5} if possible. */
760 for (i = 3; i <= 4; i++) {
761 if (leftmost_digit == i && value <= (i - 0.5) * exp10) {
762 leftmost_digit = i - 0.5;
763 pane->last_line = leftmost_digit * 2; /* lines in +1/2 increments. */
764 }
765 }
766
767 /* Truncate 2 to a multiple of 0.2 in (1, 1.6] if possible. */
768 if (leftmost_digit == 2) {
769 for (i = 1; i <= 3; i++) {
770 if (value <= (1 + i*0.2) * exp10) {
771 leftmost_digit = 1 + i*0.2;
772 pane->last_line = 5 + i; /* lines in +1/5 increments. */
773 break;
774 }
775 }
776 }
777
778 pane->max_value = leftmost_digit * exp10;
779 pane->yscale = -(int)pane->inner_height / (float)pane->max_value;
780 }
781
782 static void
783 hud_pane_update_dyn_ceiling(struct hud_graph *gr, struct hud_pane *pane)
784 {
785 unsigned i;
786 float tmp = 0.0f;
787
788 if (pane->dyn_ceil_last_ran != gr->index) {
789 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
790 for (i = 0; i < gr->num_vertices; ++i) {
791 tmp = gr->vertices[i * 2 + 1] > tmp ?
792 gr->vertices[i * 2 + 1] : tmp;
793 }
794 }
795
796 /* Avoid setting it lower than the initial starting height. */
797 tmp = tmp > pane->initial_max_value ? tmp : pane->initial_max_value;
798 hud_pane_set_max_value(pane, tmp);
799 }
800
801 /*
802 * Mark this adjustment run so we could avoid repeating a full update
803 * again needlessly in case the pane has more than one graph.
804 */
805 pane->dyn_ceil_last_ran = gr->index;
806 }
807
808 static struct hud_pane *
809 hud_pane_create(unsigned x1, unsigned y1, unsigned x2, unsigned y2,
810 unsigned period, uint64_t max_value, uint64_t ceiling,
811 boolean dyn_ceiling, boolean sort_items)
812 {
813 struct hud_pane *pane = CALLOC_STRUCT(hud_pane);
814
815 if (!pane)
816 return NULL;
817
818 pane->x1 = x1;
819 pane->y1 = y1;
820 pane->x2 = x2;
821 pane->y2 = y2;
822 pane->inner_x1 = x1 + 1;
823 pane->inner_x2 = x2 - 1;
824 pane->inner_y1 = y1 + 1;
825 pane->inner_y2 = y2 - 1;
826 pane->inner_width = pane->inner_x2 - pane->inner_x1;
827 pane->inner_height = pane->inner_y2 - pane->inner_y1;
828 pane->period = period;
829 pane->max_num_vertices = (x2 - x1 + 2) / 2;
830 pane->ceiling = ceiling;
831 pane->dyn_ceiling = dyn_ceiling;
832 pane->dyn_ceil_last_ran = 0;
833 pane->sort_items = sort_items;
834 pane->initial_max_value = max_value;
835 hud_pane_set_max_value(pane, max_value);
836 LIST_INITHEAD(&pane->graph_list);
837 return pane;
838 }
839
840 /* replace '-' with a space */
841 static void
842 strip_hyphens(char *s)
843 {
844 while (*s) {
845 if (*s == '-')
846 *s = ' ';
847 s++;
848 }
849 }
850
851 /**
852 * Add a graph to an existing pane.
853 * One pane can contain multiple graphs over each other.
854 */
855 void
856 hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr)
857 {
858 static const float colors[][3] = {
859 {0, 1, 0},
860 {1, 0, 0},
861 {0, 1, 1},
862 {1, 0, 1},
863 {1, 1, 0},
864 {0.5, 1, 0.5},
865 {1, 0.5, 0.5},
866 {0.5, 1, 1},
867 {1, 0.5, 1},
868 {1, 1, 0.5},
869 {0, 0.5, 0},
870 {0.5, 0, 0},
871 {0, 0.5, 0.5},
872 {0.5, 0, 0.5},
873 {0.5, 0.5, 0},
874 };
875 unsigned color = pane->next_color % ARRAY_SIZE(colors);
876
877 strip_hyphens(gr->name);
878
879 gr->vertices = MALLOC(pane->max_num_vertices * sizeof(float) * 2);
880 gr->color[0] = colors[color][0];
881 gr->color[1] = colors[color][1];
882 gr->color[2] = colors[color][2];
883 gr->pane = pane;
884 LIST_ADDTAIL(&gr->head, &pane->graph_list);
885 pane->num_graphs++;
886 pane->next_color++;
887 }
888
889 void
890 hud_graph_add_value(struct hud_graph *gr, uint64_t value)
891 {
892 gr->current_value = value;
893 value = value > gr->pane->ceiling ? gr->pane->ceiling : value;
894
895 if (gr->fd)
896 fprintf(gr->fd, "%" PRIu64 "\n", value);
897
898 if (gr->index == gr->pane->max_num_vertices) {
899 gr->vertices[0] = 0;
900 gr->vertices[1] = gr->vertices[(gr->index-1)*2+1];
901 gr->index = 1;
902 }
903 gr->vertices[(gr->index)*2+0] = (float) (gr->index * 2);
904 gr->vertices[(gr->index)*2+1] = (float) value;
905 gr->index++;
906
907 if (gr->num_vertices < gr->pane->max_num_vertices) {
908 gr->num_vertices++;
909 }
910
911 if (gr->pane->dyn_ceiling == true) {
912 hud_pane_update_dyn_ceiling(gr, gr->pane);
913 }
914 if (value > gr->pane->max_value) {
915 hud_pane_set_max_value(gr->pane, value);
916 }
917 }
918
919 static void
920 hud_graph_destroy(struct hud_graph *graph)
921 {
922 FREE(graph->vertices);
923 if (graph->free_query_data)
924 graph->free_query_data(graph->query_data);
925 if (graph->fd)
926 fclose(graph->fd);
927 FREE(graph);
928 }
929
930 void
931 hud_graph_set_dump_file(struct hud_graph *gr)
932 {
933 #ifndef PIPE_OS_WINDOWS
934 const char *hud_dump_dir = getenv("GALLIUM_HUD_DUMP_DIR");
935 char *dump_file;
936
937 if (hud_dump_dir && access(hud_dump_dir, W_OK) == 0) {
938 dump_file = malloc(strlen(hud_dump_dir) + sizeof("/") + sizeof(gr->name));
939 if (dump_file) {
940 strcpy(dump_file, hud_dump_dir);
941 strcat(dump_file, "/");
942 strcat(dump_file, gr->name);
943 gr->fd = fopen(dump_file, "w+");
944 free(dump_file);
945 }
946 }
947 #endif
948 }
949
950 /**
951 * Read a string from the environment variable.
952 * The separators "+", ",", ":", and ";" terminate the string.
953 * Return the number of read characters.
954 */
955 static int
956 parse_string(const char *s, char *out)
957 {
958 int i;
959
960 for (i = 0; *s && *s != '+' && *s != ',' && *s != ':' && *s != ';' && *s != '=';
961 s++, out++, i++)
962 *out = *s;
963
964 *out = 0;
965
966 if (*s && !i) {
967 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) while "
968 "parsing a string\n", *s, *s);
969 fflush(stderr);
970 }
971
972 return i;
973 }
974
975 static char *
976 read_pane_settings(char *str, unsigned * const x, unsigned * const y,
977 unsigned * const width, unsigned * const height,
978 uint64_t * const ceiling, boolean * const dyn_ceiling,
979 boolean *reset_colors, boolean *sort_items)
980 {
981 char *ret = str;
982 unsigned tmp;
983
984 while (*str == '.') {
985 ++str;
986 switch (*str) {
987 case 'x':
988 ++str;
989 *x = strtoul(str, &ret, 10);
990 str = ret;
991 break;
992
993 case 'y':
994 ++str;
995 *y = strtoul(str, &ret, 10);
996 str = ret;
997 break;
998
999 case 'w':
1000 ++str;
1001 tmp = strtoul(str, &ret, 10);
1002 *width = tmp > 80 ? tmp : 80; /* 80 is chosen arbitrarily */
1003 str = ret;
1004 break;
1005
1006 /*
1007 * Prevent setting height to less than 50. If the height is set to less,
1008 * the text of the Y axis labels on the graph will start overlapping.
1009 */
1010 case 'h':
1011 ++str;
1012 tmp = strtoul(str, &ret, 10);
1013 *height = tmp > 50 ? tmp : 50;
1014 str = ret;
1015 break;
1016
1017 case 'c':
1018 ++str;
1019 tmp = strtoul(str, &ret, 10);
1020 *ceiling = tmp > 10 ? tmp : 10;
1021 str = ret;
1022 break;
1023
1024 case 'd':
1025 ++str;
1026 ret = str;
1027 *dyn_ceiling = true;
1028 break;
1029
1030 case 'r':
1031 ++str;
1032 ret = str;
1033 *reset_colors = true;
1034 break;
1035
1036 case 's':
1037 ++str;
1038 ret = str;
1039 *sort_items = true;
1040 break;
1041
1042 default:
1043 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *str);
1044 fflush(stderr);
1045 }
1046
1047 }
1048
1049 return ret;
1050 }
1051
1052 static boolean
1053 has_occlusion_query(struct pipe_screen *screen)
1054 {
1055 return screen->get_param(screen, PIPE_CAP_OCCLUSION_QUERY) != 0;
1056 }
1057
1058 static boolean
1059 has_streamout(struct pipe_screen *screen)
1060 {
1061 return screen->get_param(screen, PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS) != 0;
1062 }
1063
1064 static boolean
1065 has_pipeline_stats_query(struct pipe_screen *screen)
1066 {
1067 return screen->get_param(screen, PIPE_CAP_QUERY_PIPELINE_STATISTICS) != 0;
1068 }
1069
1070 static void
1071 hud_parse_env_var(struct hud_context *hud, const char *env)
1072 {
1073 unsigned num, i;
1074 char name_a[256], s[256];
1075 char *name;
1076 struct hud_pane *pane = NULL;
1077 unsigned x = 10, y = 10;
1078 unsigned width = 251, height = 100;
1079 unsigned period = 500 * 1000; /* default period (1/2 second) */
1080 uint64_t ceiling = UINT64_MAX;
1081 unsigned column_width = 251;
1082 boolean dyn_ceiling = false;
1083 boolean reset_colors = false;
1084 boolean sort_items = false;
1085 const char *period_env;
1086
1087 /*
1088 * The GALLIUM_HUD_PERIOD env var sets the graph update rate.
1089 * The env var is in seconds (a float).
1090 * Zero means update after every frame.
1091 */
1092 period_env = getenv("GALLIUM_HUD_PERIOD");
1093 if (period_env) {
1094 float p = (float) atof(period_env);
1095 if (p >= 0.0f) {
1096 period = (unsigned) (p * 1000 * 1000);
1097 }
1098 }
1099
1100 while ((num = parse_string(env, name_a)) != 0) {
1101 env += num;
1102
1103 /* check for explicit location, size and etc. settings */
1104 name = read_pane_settings(name_a, &x, &y, &width, &height, &ceiling,
1105 &dyn_ceiling, &reset_colors, &sort_items);
1106
1107 /*
1108 * Keep track of overall column width to avoid pane overlapping in case
1109 * later we create a new column while the bottom pane in the current
1110 * column is less wide than the rest of the panes in it.
1111 */
1112 column_width = width > column_width ? width : column_width;
1113
1114 if (!pane) {
1115 pane = hud_pane_create(x, y, x + width, y + height, period, 10,
1116 ceiling, dyn_ceiling, sort_items);
1117 if (!pane)
1118 return;
1119 }
1120
1121 if (reset_colors) {
1122 pane->next_color = 0;
1123 reset_colors = false;
1124 }
1125
1126 /* Add a graph. */
1127 #if HAVE_GALLIUM_EXTRA_HUD || HAVE_LIBSENSORS
1128 char arg_name[64];
1129 #endif
1130 /* IF YOU CHANGE THIS, UPDATE print_help! */
1131 if (strcmp(name, "fps") == 0) {
1132 hud_fps_graph_install(pane);
1133 }
1134 else if (strcmp(name, "cpu") == 0) {
1135 hud_cpu_graph_install(pane, ALL_CPUS);
1136 }
1137 else if (sscanf(name, "cpu%u%s", &i, s) == 1) {
1138 hud_cpu_graph_install(pane, i);
1139 }
1140 #if HAVE_GALLIUM_EXTRA_HUD
1141 else if (sscanf(name, "nic-rx-%s", arg_name) == 1) {
1142 hud_nic_graph_install(pane, arg_name, NIC_DIRECTION_RX);
1143 }
1144 else if (sscanf(name, "nic-tx-%s", arg_name) == 1) {
1145 hud_nic_graph_install(pane, arg_name, NIC_DIRECTION_TX);
1146 }
1147 else if (sscanf(name, "nic-rssi-%s", arg_name) == 1) {
1148 hud_nic_graph_install(pane, arg_name, NIC_RSSI_DBM);
1149 pane->type = PIPE_DRIVER_QUERY_TYPE_DBM;
1150 }
1151 else if (sscanf(name, "diskstat-rd-%s", arg_name) == 1) {
1152 hud_diskstat_graph_install(pane, arg_name, DISKSTAT_RD);
1153 pane->type = PIPE_DRIVER_QUERY_TYPE_BYTES;
1154 }
1155 else if (sscanf(name, "diskstat-wr-%s", arg_name) == 1) {
1156 hud_diskstat_graph_install(pane, arg_name, DISKSTAT_WR);
1157 pane->type = PIPE_DRIVER_QUERY_TYPE_BYTES;
1158 }
1159 else if (sscanf(name, "cpufreq-min-cpu%u", &i) == 1) {
1160 hud_cpufreq_graph_install(pane, i, CPUFREQ_MINIMUM);
1161 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1162 }
1163 else if (sscanf(name, "cpufreq-cur-cpu%u", &i) == 1) {
1164 hud_cpufreq_graph_install(pane, i, CPUFREQ_CURRENT);
1165 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1166 }
1167 else if (sscanf(name, "cpufreq-max-cpu%u", &i) == 1) {
1168 hud_cpufreq_graph_install(pane, i, CPUFREQ_MAXIMUM);
1169 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1170 }
1171 #endif
1172 #if HAVE_LIBSENSORS
1173 else if (sscanf(name, "sensors_temp_cu-%s", arg_name) == 1) {
1174 hud_sensors_temp_graph_install(pane, arg_name,
1175 SENSORS_TEMP_CURRENT);
1176 pane->type = PIPE_DRIVER_QUERY_TYPE_TEMPERATURE;
1177 }
1178 else if (sscanf(name, "sensors_temp_cr-%s", arg_name) == 1) {
1179 hud_sensors_temp_graph_install(pane, arg_name,
1180 SENSORS_TEMP_CRITICAL);
1181 pane->type = PIPE_DRIVER_QUERY_TYPE_TEMPERATURE;
1182 }
1183 else if (sscanf(name, "sensors_volt_cu-%s", arg_name) == 1) {
1184 hud_sensors_temp_graph_install(pane, arg_name,
1185 SENSORS_VOLTAGE_CURRENT);
1186 pane->type = PIPE_DRIVER_QUERY_TYPE_VOLTS;
1187 }
1188 else if (sscanf(name, "sensors_curr_cu-%s", arg_name) == 1) {
1189 hud_sensors_temp_graph_install(pane, arg_name,
1190 SENSORS_CURRENT_CURRENT);
1191 pane->type = PIPE_DRIVER_QUERY_TYPE_AMPS;
1192 }
1193 else if (sscanf(name, "sensors_pow_cu-%s", arg_name) == 1) {
1194 hud_sensors_temp_graph_install(pane, arg_name,
1195 SENSORS_POWER_CURRENT);
1196 pane->type = PIPE_DRIVER_QUERY_TYPE_WATTS;
1197 }
1198 #endif
1199 else if (strcmp(name, "samples-passed") == 0 &&
1200 has_occlusion_query(hud->pipe->screen)) {
1201 hud_pipe_query_install(&hud->batch_query, pane, hud->pipe,
1202 "samples-passed",
1203 PIPE_QUERY_OCCLUSION_COUNTER, 0, 0,
1204 PIPE_DRIVER_QUERY_TYPE_UINT64,
1205 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1206 0);
1207 }
1208 else if (strcmp(name, "primitives-generated") == 0 &&
1209 has_streamout(hud->pipe->screen)) {
1210 hud_pipe_query_install(&hud->batch_query, pane, hud->pipe,
1211 "primitives-generated",
1212 PIPE_QUERY_PRIMITIVES_GENERATED, 0, 0,
1213 PIPE_DRIVER_QUERY_TYPE_UINT64,
1214 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1215 0);
1216 }
1217 else {
1218 boolean processed = FALSE;
1219
1220 /* pipeline statistics queries */
1221 if (has_pipeline_stats_query(hud->pipe->screen)) {
1222 static const char *pipeline_statistics_names[] =
1223 {
1224 "ia-vertices",
1225 "ia-primitives",
1226 "vs-invocations",
1227 "gs-invocations",
1228 "gs-primitives",
1229 "clipper-invocations",
1230 "clipper-primitives-generated",
1231 "ps-invocations",
1232 "hs-invocations",
1233 "ds-invocations",
1234 "cs-invocations"
1235 };
1236 for (i = 0; i < ARRAY_SIZE(pipeline_statistics_names); ++i)
1237 if (strcmp(name, pipeline_statistics_names[i]) == 0)
1238 break;
1239 if (i < ARRAY_SIZE(pipeline_statistics_names)) {
1240 hud_pipe_query_install(&hud->batch_query, pane, hud->pipe, name,
1241 PIPE_QUERY_PIPELINE_STATISTICS, i,
1242 0, PIPE_DRIVER_QUERY_TYPE_UINT64,
1243 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1244 0);
1245 processed = TRUE;
1246 }
1247 }
1248
1249 /* driver queries */
1250 if (!processed) {
1251 if (!hud_driver_query_install(&hud->batch_query, pane, hud->pipe,
1252 name)) {
1253 fprintf(stderr, "gallium_hud: unknown driver query '%s'\n", name);
1254 fflush(stderr);
1255 }
1256 }
1257 }
1258
1259 if (*env == ':') {
1260 env++;
1261
1262 if (!pane) {
1263 fprintf(stderr, "gallium_hud: syntax error: unexpected ':', "
1264 "expected a name\n");
1265 fflush(stderr);
1266 break;
1267 }
1268
1269 num = parse_string(env, s);
1270 env += num;
1271
1272 if (num && sscanf(s, "%u", &i) == 1) {
1273 hud_pane_set_max_value(pane, i);
1274 pane->initial_max_value = i;
1275 }
1276 else {
1277 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) "
1278 "after ':'\n", *env, *env);
1279 fflush(stderr);
1280 }
1281 }
1282
1283 if (*env == '=') {
1284 env++;
1285
1286 if (!pane) {
1287 fprintf(stderr, "gallium_hud: syntax error: unexpected '=', "
1288 "expected a name\n");
1289 fflush(stderr);
1290 break;
1291 }
1292
1293 num = parse_string(env, s);
1294 env += num;
1295
1296 strip_hyphens(s);
1297 if (!LIST_IS_EMPTY(&pane->graph_list)) {
1298 struct hud_graph *graph;
1299 graph = LIST_ENTRY(struct hud_graph, pane->graph_list.prev, head);
1300 strncpy(graph->name, s, sizeof(graph->name)-1);
1301 graph->name[sizeof(graph->name)-1] = 0;
1302 }
1303 }
1304
1305 if (*env == 0)
1306 break;
1307
1308 /* parse a separator */
1309 switch (*env) {
1310 case '+':
1311 env++;
1312 break;
1313
1314 case ',':
1315 env++;
1316 if (!pane)
1317 break;
1318
1319 y += height + hud->font.glyph_height * (pane->num_graphs + 2);
1320 height = 100;
1321
1322 if (pane && pane->num_graphs) {
1323 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1324 pane = NULL;
1325 }
1326 break;
1327
1328 case ';':
1329 env++;
1330 y = 10;
1331 x += column_width + hud->font.glyph_width * 9;
1332 height = 100;
1333
1334 if (pane && pane->num_graphs) {
1335 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1336 pane = NULL;
1337 }
1338
1339 /* Starting a new column; reset column width. */
1340 column_width = 251;
1341 break;
1342
1343 default:
1344 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *env);
1345 fflush(stderr);
1346 }
1347
1348 /* Reset to defaults for the next pane in case these were modified. */
1349 width = 251;
1350 ceiling = UINT64_MAX;
1351 dyn_ceiling = false;
1352 sort_items = false;
1353
1354 }
1355
1356 if (pane) {
1357 if (pane->num_graphs) {
1358 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1359 }
1360 else {
1361 FREE(pane);
1362 }
1363 }
1364 }
1365
1366 static void
1367 print_help(struct pipe_screen *screen)
1368 {
1369 int i, num_queries, num_cpus = hud_get_num_cpus();
1370
1371 puts("Syntax: GALLIUM_HUD=name1[+name2][...][:value1][,nameI...][;nameJ...]");
1372 puts("");
1373 puts(" Names are identifiers of data sources which will be drawn as graphs");
1374 puts(" in panes. Multiple graphs can be drawn in the same pane.");
1375 puts(" There can be multiple panes placed in rows and columns.");
1376 puts("");
1377 puts(" '+' separates names which will share a pane.");
1378 puts(" ':[value]' specifies the initial maximum value of the Y axis");
1379 puts(" for the given pane.");
1380 puts(" ',' creates a new pane below the last one.");
1381 puts(" ';' creates a new pane at the top of the next column.");
1382 puts(" '=' followed by a string, changes the name of the last data source");
1383 puts(" to that string");
1384 puts("");
1385 puts(" Example: GALLIUM_HUD=\"cpu,fps;primitives-generated\"");
1386 puts("");
1387 puts(" Additionally, by prepending '.[identifier][value]' modifiers to");
1388 puts(" a name, it is possible to explicitly set the location and size");
1389 puts(" of a pane, along with limiting overall maximum value of the");
1390 puts(" Y axis and activating dynamic readjustment of the Y axis.");
1391 puts(" Several modifiers may be applied to the same pane simultaneously.");
1392 puts("");
1393 puts(" 'x[value]' sets the location of the pane on the x axis relative");
1394 puts(" to the upper-left corner of the viewport, in pixels.");
1395 puts(" 'y[value]' sets the location of the pane on the y axis relative");
1396 puts(" to the upper-left corner of the viewport, in pixels.");
1397 puts(" 'w[value]' sets width of the graph pixels.");
1398 puts(" 'h[value]' sets height of the graph in pixels.");
1399 puts(" 'c[value]' sets the ceiling of the value of the Y axis.");
1400 puts(" If the graph needs to draw values higher than");
1401 puts(" the ceiling allows, the value is clamped.");
1402 puts(" 'd' activates dynamic Y axis readjustment to set the value of");
1403 puts(" the Y axis to match the highest value still visible in the graph.");
1404 puts(" 'r' resets the color counter (the next color will be green)");
1405 puts(" 's' sort items below graphs in descending order");
1406 puts("");
1407 puts(" If 'c' and 'd' modifiers are used simultaneously, both are in effect:");
1408 puts(" the Y axis does not go above the restriction imposed by 'c' while");
1409 puts(" still adjusting the value of the Y axis down when appropriate.");
1410 puts("");
1411 puts(" Example: GALLIUM_HUD=\".w256.h64.x1600.y520.d.c1000fps+cpu,.datom-count\"");
1412 puts("");
1413 puts(" Available names:");
1414 puts(" fps");
1415 puts(" cpu");
1416
1417 for (i = 0; i < num_cpus; i++)
1418 printf(" cpu%i\n", i);
1419
1420 if (has_occlusion_query(screen))
1421 puts(" samples-passed");
1422 if (has_streamout(screen))
1423 puts(" primitives-generated");
1424
1425 if (has_pipeline_stats_query(screen)) {
1426 puts(" ia-vertices");
1427 puts(" ia-primitives");
1428 puts(" vs-invocations");
1429 puts(" gs-invocations");
1430 puts(" gs-primitives");
1431 puts(" clipper-invocations");
1432 puts(" clipper-primitives-generated");
1433 puts(" ps-invocations");
1434 puts(" hs-invocations");
1435 puts(" ds-invocations");
1436 puts(" cs-invocations");
1437 }
1438
1439 #if HAVE_GALLIUM_EXTRA_HUD
1440 hud_get_num_disks(1);
1441 hud_get_num_nics(1);
1442 hud_get_num_cpufreq(1);
1443 #endif
1444 #if HAVE_LIBSENSORS
1445 hud_get_num_sensors(1);
1446 #endif
1447
1448 if (screen->get_driver_query_info){
1449 boolean skipping = false;
1450 struct pipe_driver_query_info info;
1451 num_queries = screen->get_driver_query_info(screen, 0, NULL);
1452
1453 for (i = 0; i < num_queries; i++){
1454 screen->get_driver_query_info(screen, i, &info);
1455 if (info.flags & PIPE_DRIVER_QUERY_FLAG_DONT_LIST) {
1456 if (!skipping)
1457 puts(" ...");
1458 skipping = true;
1459 } else {
1460 printf(" %s\n", info.name);
1461 skipping = false;
1462 }
1463 }
1464 }
1465
1466 puts("");
1467 fflush(stdout);
1468 }
1469
1470 struct hud_context *
1471 hud_create(struct pipe_context *pipe, struct cso_context *cso)
1472 {
1473 struct pipe_screen *screen = pipe->screen;
1474 struct hud_context *hud;
1475 struct pipe_sampler_view view_templ;
1476 unsigned i;
1477 const char *env = debug_get_option("GALLIUM_HUD", NULL);
1478 #ifdef PIPE_OS_UNIX
1479 unsigned signo = debug_get_num_option("GALLIUM_HUD_TOGGLE_SIGNAL", 0);
1480 static boolean sig_handled = FALSE;
1481 struct sigaction action = {};
1482 #endif
1483 huds_visible = debug_get_bool_option("GALLIUM_HUD_VISIBLE", TRUE);
1484
1485 if (!env || !*env)
1486 return NULL;
1487
1488 if (strcmp(env, "help") == 0) {
1489 print_help(pipe->screen);
1490 return NULL;
1491 }
1492
1493 hud = CALLOC_STRUCT(hud_context);
1494 if (!hud)
1495 return NULL;
1496
1497 hud->pipe = pipe;
1498 hud->cso = cso;
1499
1500 /* font */
1501 if (!util_font_create(pipe, UTIL_FONT_FIXED_8X13, &hud->font)) {
1502 FREE(hud);
1503 return NULL;
1504 }
1505
1506 hud->has_srgb = screen->is_format_supported(screen,
1507 PIPE_FORMAT_B8G8R8A8_SRGB,
1508 PIPE_TEXTURE_2D, 0,
1509 PIPE_BIND_RENDER_TARGET) != 0;
1510
1511 /* blend state */
1512 hud->no_blend.rt[0].colormask = PIPE_MASK_RGBA;
1513
1514 hud->alpha_blend.rt[0].colormask = PIPE_MASK_RGBA;
1515 hud->alpha_blend.rt[0].blend_enable = 1;
1516 hud->alpha_blend.rt[0].rgb_func = PIPE_BLEND_ADD;
1517 hud->alpha_blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_SRC_ALPHA;
1518 hud->alpha_blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_INV_SRC_ALPHA;
1519 hud->alpha_blend.rt[0].alpha_func = PIPE_BLEND_ADD;
1520 hud->alpha_blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ZERO;
1521 hud->alpha_blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
1522
1523 /* fragment shader */
1524 hud->fs_color =
1525 util_make_fragment_passthrough_shader(pipe,
1526 TGSI_SEMANTIC_COLOR,
1527 TGSI_INTERPOLATE_CONSTANT,
1528 TRUE);
1529
1530 {
1531 /* Read a texture and do .xxxx swizzling. */
1532 static const char *fragment_shader_text = {
1533 "FRAG\n"
1534 "DCL IN[0], GENERIC[0], LINEAR\n"
1535 "DCL SAMP[0]\n"
1536 "DCL SVIEW[0], RECT, FLOAT\n"
1537 "DCL OUT[0], COLOR[0]\n"
1538 "DCL TEMP[0]\n"
1539
1540 "TEX TEMP[0], IN[0], SAMP[0], RECT\n"
1541 "MOV OUT[0], TEMP[0].xxxx\n"
1542 "END\n"
1543 };
1544
1545 struct tgsi_token tokens[1000];
1546 struct pipe_shader_state state;
1547
1548 if (!tgsi_text_translate(fragment_shader_text, tokens, ARRAY_SIZE(tokens))) {
1549 assert(0);
1550 pipe_resource_reference(&hud->font.texture, NULL);
1551 FREE(hud);
1552 return NULL;
1553 }
1554 pipe_shader_state_from_tgsi(&state, tokens);
1555 hud->fs_text = pipe->create_fs_state(pipe, &state);
1556 }
1557
1558 /* rasterizer */
1559 hud->rasterizer.half_pixel_center = 1;
1560 hud->rasterizer.bottom_edge_rule = 1;
1561 hud->rasterizer.depth_clip = 1;
1562 hud->rasterizer.line_width = 1;
1563 hud->rasterizer.line_last_pixel = 1;
1564
1565 hud->rasterizer_aa_lines = hud->rasterizer;
1566 hud->rasterizer_aa_lines.line_smooth = 1;
1567
1568 /* vertex shader */
1569 {
1570 static const char *vertex_shader_text = {
1571 "VERT\n"
1572 "DCL IN[0..1]\n"
1573 "DCL OUT[0], POSITION\n"
1574 "DCL OUT[1], COLOR[0]\n" /* color */
1575 "DCL OUT[2], GENERIC[0]\n" /* texcoord */
1576 /* [0] = color,
1577 * [1] = (2/fb_width, 2/fb_height, xoffset, yoffset)
1578 * [2] = (xscale, yscale, 0, 0) */
1579 "DCL CONST[0..2]\n"
1580 "DCL TEMP[0]\n"
1581 "IMM[0] FLT32 { -1, 0, 0, 1 }\n"
1582
1583 /* v = in * (xscale, yscale) + (xoffset, yoffset) */
1584 "MAD TEMP[0].xy, IN[0], CONST[2].xyyy, CONST[1].zwww\n"
1585 /* pos = v * (2 / fb_width, 2 / fb_height) - (1, 1) */
1586 "MAD OUT[0].xy, TEMP[0], CONST[1].xyyy, IMM[0].xxxx\n"
1587 "MOV OUT[0].zw, IMM[0]\n"
1588
1589 "MOV OUT[1], CONST[0]\n"
1590 "MOV OUT[2], IN[1]\n"
1591 "END\n"
1592 };
1593
1594 struct tgsi_token tokens[1000];
1595 struct pipe_shader_state state;
1596 if (!tgsi_text_translate(vertex_shader_text, tokens, ARRAY_SIZE(tokens))) {
1597 assert(0);
1598 pipe_resource_reference(&hud->font.texture, NULL);
1599 FREE(hud);
1600 return NULL;
1601 }
1602 pipe_shader_state_from_tgsi(&state, tokens);
1603 hud->vs = pipe->create_vs_state(pipe, &state);
1604 }
1605
1606 /* vertex elements */
1607 for (i = 0; i < 2; i++) {
1608 hud->velems[i].src_offset = i * 2 * sizeof(float);
1609 hud->velems[i].src_format = PIPE_FORMAT_R32G32_FLOAT;
1610 hud->velems[i].vertex_buffer_index = cso_get_aux_vertex_buffer_slot(cso);
1611 }
1612
1613 /* sampler view */
1614 u_sampler_view_default_template(
1615 &view_templ, hud->font.texture, hud->font.texture->format);
1616 hud->font_sampler_view = pipe->create_sampler_view(pipe, hud->font.texture,
1617 &view_templ);
1618
1619 /* sampler state (for font drawing) */
1620 hud->font_sampler_state.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1621 hud->font_sampler_state.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1622 hud->font_sampler_state.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1623 hud->font_sampler_state.normalized_coords = 0;
1624
1625 /* constants */
1626 hud->constbuf.buffer_size = sizeof(hud->constants);
1627 hud->constbuf.user_buffer = &hud->constants;
1628
1629 LIST_INITHEAD(&hud->pane_list);
1630
1631 /* setup sig handler once for all hud contexts */
1632 #ifdef PIPE_OS_UNIX
1633 if (!sig_handled && signo != 0) {
1634 action.sa_sigaction = &signal_visible_handler;
1635 action.sa_flags = SA_SIGINFO;
1636
1637 if (signo >= NSIG)
1638 fprintf(stderr, "gallium_hud: invalid signal %u\n", signo);
1639 else if (sigaction(signo, &action, NULL) < 0)
1640 fprintf(stderr, "gallium_hud: unable to set handler for signal %u\n", signo);
1641 fflush(stderr);
1642
1643 sig_handled = TRUE;
1644 }
1645 #endif
1646
1647 hud_parse_env_var(hud, env);
1648 return hud;
1649 }
1650
1651 void
1652 hud_destroy(struct hud_context *hud)
1653 {
1654 struct pipe_context *pipe = hud->pipe;
1655 struct hud_pane *pane, *pane_tmp;
1656 struct hud_graph *graph, *graph_tmp;
1657
1658 LIST_FOR_EACH_ENTRY_SAFE(pane, pane_tmp, &hud->pane_list, head) {
1659 LIST_FOR_EACH_ENTRY_SAFE(graph, graph_tmp, &pane->graph_list, head) {
1660 LIST_DEL(&graph->head);
1661 hud_graph_destroy(graph);
1662 }
1663 LIST_DEL(&pane->head);
1664 FREE(pane);
1665 }
1666
1667 hud_batch_query_cleanup(&hud->batch_query);
1668 pipe->delete_fs_state(pipe, hud->fs_color);
1669 pipe->delete_fs_state(pipe, hud->fs_text);
1670 pipe->delete_vs_state(pipe, hud->vs);
1671 pipe_sampler_view_reference(&hud->font_sampler_view, NULL);
1672 pipe_resource_reference(&hud->font.texture, NULL);
1673 FREE(hud);
1674 }