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