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