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