gallium: remove unused pipe_viewport_state::translate[3] and scale[3]
[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, boolean is_in_bytes, char *out)
235 {
236 static const char *byte_units[] =
237 {"", " KB", " MB", " GB", " TB", " PB", " EB"};
238 static const char *metric_units[] =
239 {"", " k", " M", " G", " T", " P", " E"};
240 const char **units = is_in_bytes ? byte_units : metric_units;
241 double divisor = is_in_bytes ? 1024 : 1000;
242 int unit = 0;
243 double d = num;
244
245 while (d > divisor) {
246 d /= divisor;
247 unit++;
248 }
249
250 if (d >= 100 || d == (int)d)
251 sprintf(out, "%.0f%s", d, units[unit]);
252 else if (d >= 10 || d*10 == (int)(d*10))
253 sprintf(out, "%.1f%s", d, units[unit]);
254 else
255 sprintf(out, "%.2f%s", d, units[unit]);
256 }
257
258 static void
259 hud_draw_graph_line_strip(struct hud_context *hud, const struct hud_graph *gr,
260 unsigned xoffset, unsigned yoffset, float yscale)
261 {
262 if (gr->num_vertices <= 1)
263 return;
264
265 assert(gr->index <= gr->num_vertices);
266
267 hud_draw_colored_prims(hud, PIPE_PRIM_LINE_STRIP,
268 gr->vertices, gr->index,
269 gr->color[0], gr->color[1], gr->color[2], 1,
270 xoffset + (gr->pane->max_num_vertices - gr->index - 1) * 2 - 1,
271 yoffset, yscale);
272
273 if (gr->num_vertices <= gr->index)
274 return;
275
276 hud_draw_colored_prims(hud, PIPE_PRIM_LINE_STRIP,
277 gr->vertices + gr->index*2,
278 gr->num_vertices - gr->index,
279 gr->color[0], gr->color[1], gr->color[2], 1,
280 xoffset - gr->index*2 - 1, yoffset, yscale);
281 }
282
283 static void
284 hud_pane_accumulate_vertices(struct hud_context *hud,
285 const struct hud_pane *pane)
286 {
287 struct hud_graph *gr;
288 float *line_verts = hud->whitelines.vertices + hud->whitelines.num_vertices*2;
289 unsigned i, num = 0;
290 char str[32];
291
292 /* draw background */
293 hud_draw_background_quad(hud,
294 pane->x1, pane->y1,
295 pane->x2, pane->y2);
296
297 /* draw numbers on the right-hand side */
298 for (i = 0; i < 6; i++) {
299 unsigned x = pane->x2 + 2;
300 unsigned y = pane->inner_y1 + pane->inner_height * (5 - i) / 5 -
301 hud->font.glyph_height / 2;
302
303 number_to_human_readable(pane->max_value * i / 5,
304 pane->uses_byte_units, str);
305 hud_draw_string(hud, x, y, str);
306 }
307
308 /* draw info below the pane */
309 i = 0;
310 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
311 unsigned x = pane->x1 + 2;
312 unsigned y = pane->y2 + 2 + i*hud->font.glyph_height;
313
314 number_to_human_readable(gr->current_value,
315 pane->uses_byte_units, str);
316 hud_draw_string(hud, x, y, " %s: %s", gr->name, str);
317 i++;
318 }
319
320 /* draw border */
321 assert(hud->whitelines.num_vertices + num/2 + 8 <= hud->whitelines.max_num_vertices);
322 line_verts[num++] = (float) pane->x1;
323 line_verts[num++] = (float) pane->y1;
324 line_verts[num++] = (float) pane->x2;
325 line_verts[num++] = (float) pane->y1;
326
327 line_verts[num++] = (float) pane->x2;
328 line_verts[num++] = (float) pane->y1;
329 line_verts[num++] = (float) pane->x2;
330 line_verts[num++] = (float) pane->y2;
331
332 line_verts[num++] = (float) pane->x1;
333 line_verts[num++] = (float) pane->y2;
334 line_verts[num++] = (float) pane->x2;
335 line_verts[num++] = (float) pane->y2;
336
337 line_verts[num++] = (float) pane->x1;
338 line_verts[num++] = (float) pane->y1;
339 line_verts[num++] = (float) pane->x1;
340 line_verts[num++] = (float) pane->y2;
341
342 /* draw horizontal lines inside the graph */
343 for (i = 0; i <= 5; i++) {
344 float y = round((pane->max_value * i / 5.0) * pane->yscale + pane->inner_y2);
345
346 assert(hud->whitelines.num_vertices + num/2 + 2 <= hud->whitelines.max_num_vertices);
347 line_verts[num++] = pane->x1;
348 line_verts[num++] = y;
349 line_verts[num++] = pane->x2;
350 line_verts[num++] = y;
351 }
352
353 hud->whitelines.num_vertices += num/2;
354 }
355
356 static void
357 hud_pane_draw_colored_objects(struct hud_context *hud,
358 const struct hud_pane *pane)
359 {
360 struct hud_graph *gr;
361 unsigned i;
362
363 /* draw colored quads below the pane */
364 i = 0;
365 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
366 unsigned x = pane->x1 + 2;
367 unsigned y = pane->y2 + 2 + i*hud->font.glyph_height;
368
369 hud_draw_colored_quad(hud, PIPE_PRIM_QUADS, x + 1, y + 1, x + 12, y + 13,
370 gr->color[0], gr->color[1], gr->color[2], 1);
371 i++;
372 }
373
374 /* draw the line strips */
375 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
376 hud_draw_graph_line_strip(hud, gr, pane->inner_x1, pane->inner_y2, pane->yscale);
377 }
378 }
379
380 static void
381 hud_alloc_vertices(struct hud_context *hud, struct vertex_queue *v,
382 unsigned num_vertices, unsigned stride)
383 {
384 v->num_vertices = 0;
385 v->max_num_vertices = num_vertices;
386 v->vbuf.stride = stride;
387 u_upload_alloc(hud->uploader, 0, v->vbuf.stride * v->max_num_vertices,
388 &v->vbuf.buffer_offset, &v->vbuf.buffer,
389 (void**)&v->vertices);
390 }
391
392 /**
393 * Draw the HUD to the texture \p tex.
394 * The texture is usually the back buffer being displayed.
395 */
396 void
397 hud_draw(struct hud_context *hud, struct pipe_resource *tex)
398 {
399 struct cso_context *cso = hud->cso;
400 struct pipe_context *pipe = hud->pipe;
401 struct pipe_framebuffer_state fb;
402 struct pipe_surface surf_templ, *surf;
403 struct pipe_viewport_state viewport;
404 const struct pipe_sampler_state *sampler_states[] =
405 { &hud->font_sampler_state };
406 struct hud_pane *pane;
407 struct hud_graph *gr;
408
409 hud->fb_width = tex->width0;
410 hud->fb_height = tex->height0;
411 hud->constants.two_div_fb_width = 2.0f / hud->fb_width;
412 hud->constants.two_div_fb_height = 2.0f / hud->fb_height;
413
414 cso_save_framebuffer(cso);
415 cso_save_sample_mask(cso);
416 cso_save_min_samples(cso);
417 cso_save_blend(cso);
418 cso_save_depth_stencil_alpha(cso);
419 cso_save_fragment_shader(cso);
420 cso_save_sampler_views(cso, PIPE_SHADER_FRAGMENT);
421 cso_save_samplers(cso, PIPE_SHADER_FRAGMENT);
422 cso_save_rasterizer(cso);
423 cso_save_viewport(cso);
424 cso_save_stream_outputs(cso);
425 cso_save_geometry_shader(cso);
426 cso_save_vertex_shader(cso);
427 cso_save_vertex_elements(cso);
428 cso_save_aux_vertex_buffer_slot(cso);
429 cso_save_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
430 cso_save_render_condition(cso);
431
432 /* set states */
433 memset(&surf_templ, 0, sizeof(surf_templ));
434 surf_templ.format = tex->format;
435 surf = pipe->create_surface(pipe, tex, &surf_templ);
436
437 memset(&fb, 0, sizeof(fb));
438 fb.nr_cbufs = 1;
439 fb.cbufs[0] = surf;
440 fb.zsbuf = NULL;
441 fb.width = hud->fb_width;
442 fb.height = hud->fb_height;
443
444 viewport.scale[0] = 0.5f * hud->fb_width;
445 viewport.scale[1] = 0.5f * hud->fb_height;
446 viewport.scale[2] = 1.0f;
447 viewport.translate[0] = 0.5f * hud->fb_width;
448 viewport.translate[1] = 0.5f * hud->fb_height;
449 viewport.translate[2] = 0.0f;
450
451 cso_set_framebuffer(cso, &fb);
452 cso_set_sample_mask(cso, ~0);
453 cso_set_min_samples(cso, 1);
454 cso_set_blend(cso, &hud->alpha_blend);
455 cso_set_depth_stencil_alpha(cso, &hud->dsa);
456 cso_set_rasterizer(cso, &hud->rasterizer);
457 cso_set_viewport(cso, &viewport);
458 cso_set_stream_outputs(cso, 0, NULL, NULL);
459 cso_set_geometry_shader_handle(cso, NULL);
460 cso_set_vertex_shader_handle(cso, hud->vs);
461 cso_set_vertex_elements(cso, 2, hud->velems);
462 cso_set_render_condition(cso, NULL, FALSE, 0);
463 cso_set_sampler_views(cso, PIPE_SHADER_FRAGMENT, 1,
464 &hud->font_sampler_view);
465 cso_set_samplers(cso, PIPE_SHADER_FRAGMENT, 1, sampler_states);
466 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
467
468 /* prepare vertex buffers */
469 hud_alloc_vertices(hud, &hud->bg, 4 * 128, 2 * sizeof(float));
470 hud_alloc_vertices(hud, &hud->whitelines, 4 * 256, 2 * sizeof(float));
471 hud_alloc_vertices(hud, &hud->text, 4 * 512, 4 * sizeof(float));
472
473 /* prepare all graphs */
474 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
475 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
476 gr->query_new_value(gr);
477 }
478
479 hud_pane_accumulate_vertices(hud, pane);
480 }
481
482 /* unmap the uploader's vertex buffer before drawing */
483 u_upload_unmap(hud->uploader);
484
485 /* draw accumulated vertices for background quads */
486 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
487
488 if (hud->bg.num_vertices) {
489 hud->constants.color[0] = 0;
490 hud->constants.color[1] = 0;
491 hud->constants.color[2] = 0;
492 hud->constants.color[3] = 0.666f;
493 hud->constants.translate[0] = 0;
494 hud->constants.translate[1] = 0;
495 hud->constants.scale[0] = 1;
496 hud->constants.scale[1] = 1;
497
498 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
499 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
500 &hud->bg.vbuf);
501 cso_draw_arrays(cso, PIPE_PRIM_QUADS, 0, hud->bg.num_vertices);
502 }
503 pipe_resource_reference(&hud->bg.vbuf.buffer, NULL);
504
505 /* draw accumulated vertices for white lines */
506 hud->constants.color[0] = 1;
507 hud->constants.color[1] = 1;
508 hud->constants.color[2] = 1;
509 hud->constants.color[3] = 1;
510 hud->constants.translate[0] = 0;
511 hud->constants.translate[1] = 0;
512 hud->constants.scale[0] = 1;
513 hud->constants.scale[1] = 1;
514 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
515
516 if (hud->whitelines.num_vertices) {
517 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
518 &hud->whitelines.vbuf);
519 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
520 cso_draw_arrays(cso, PIPE_PRIM_LINES, 0, hud->whitelines.num_vertices);
521 }
522 pipe_resource_reference(&hud->whitelines.vbuf.buffer, NULL);
523
524 /* draw accumulated vertices for text */
525 if (hud->text.num_vertices) {
526 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
527 &hud->text.vbuf);
528 cso_set_fragment_shader_handle(hud->cso, hud->fs_text);
529 cso_draw_arrays(cso, PIPE_PRIM_QUADS, 0, hud->text.num_vertices);
530 }
531 pipe_resource_reference(&hud->text.vbuf.buffer, NULL);
532
533 /* draw the rest */
534 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
535 if (pane)
536 hud_pane_draw_colored_objects(hud, pane);
537 }
538
539 /* restore states */
540 cso_restore_framebuffer(cso);
541 cso_restore_sample_mask(cso);
542 cso_restore_min_samples(cso);
543 cso_restore_blend(cso);
544 cso_restore_depth_stencil_alpha(cso);
545 cso_restore_fragment_shader(cso);
546 cso_restore_sampler_views(cso, PIPE_SHADER_FRAGMENT);
547 cso_restore_samplers(cso, PIPE_SHADER_FRAGMENT);
548 cso_restore_rasterizer(cso);
549 cso_restore_viewport(cso);
550 cso_restore_stream_outputs(cso);
551 cso_restore_geometry_shader(cso);
552 cso_restore_vertex_shader(cso);
553 cso_restore_vertex_elements(cso);
554 cso_restore_aux_vertex_buffer_slot(cso);
555 cso_restore_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
556 cso_restore_render_condition(cso);
557
558 pipe_surface_reference(&surf, NULL);
559 }
560
561 /**
562 * Set the maximum value for the Y axis of the graph.
563 * This scales the graph accordingly.
564 */
565 void
566 hud_pane_set_max_value(struct hud_pane *pane, uint64_t value)
567 {
568 pane->max_value = value;
569 pane->yscale = -(int)pane->inner_height / (float)pane->max_value;
570 }
571
572 static struct hud_pane *
573 hud_pane_create(unsigned x1, unsigned y1, unsigned x2, unsigned y2,
574 unsigned period, uint64_t max_value)
575 {
576 struct hud_pane *pane = CALLOC_STRUCT(hud_pane);
577
578 if (!pane)
579 return NULL;
580
581 pane->x1 = x1;
582 pane->y1 = y1;
583 pane->x2 = x2;
584 pane->y2 = y2;
585 pane->inner_x1 = x1 + 1;
586 pane->inner_x2 = x2 - 1;
587 pane->inner_y1 = y1 + 1;
588 pane->inner_y2 = y2 - 1;
589 pane->inner_width = pane->inner_x2 - pane->inner_x1;
590 pane->inner_height = pane->inner_y2 - pane->inner_y1;
591 pane->period = period;
592 pane->max_num_vertices = (x2 - x1 + 2) / 2;
593 hud_pane_set_max_value(pane, max_value);
594 LIST_INITHEAD(&pane->graph_list);
595 return pane;
596 }
597
598 /**
599 * Add a graph to an existing pane.
600 * One pane can contain multiple graphs over each other.
601 */
602 void
603 hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr)
604 {
605 static const float colors[][3] = {
606 {0, 1, 0},
607 {1, 0, 0},
608 {0, 1, 1},
609 {1, 0, 1},
610 {1, 1, 0},
611 {0.5, 0.5, 1},
612 {0.5, 0.5, 0.5},
613 };
614 char *name = gr->name;
615
616 /* replace '-' with a space */
617 while (*name) {
618 if (*name == '-')
619 *name = ' ';
620 name++;
621 }
622
623 assert(pane->num_graphs < Elements(colors));
624 gr->vertices = MALLOC(pane->max_num_vertices * sizeof(float) * 2);
625 gr->color[0] = colors[pane->num_graphs][0];
626 gr->color[1] = colors[pane->num_graphs][1];
627 gr->color[2] = colors[pane->num_graphs][2];
628 gr->pane = pane;
629 LIST_ADDTAIL(&gr->head, &pane->graph_list);
630 pane->num_graphs++;
631 }
632
633 void
634 hud_graph_add_value(struct hud_graph *gr, uint64_t value)
635 {
636 if (gr->index == gr->pane->max_num_vertices) {
637 gr->vertices[0] = 0;
638 gr->vertices[1] = gr->vertices[(gr->index-1)*2+1];
639 gr->index = 1;
640 }
641 gr->vertices[(gr->index)*2+0] = (float) (gr->index * 2);
642 gr->vertices[(gr->index)*2+1] = (float) value;
643 gr->index++;
644
645 if (gr->num_vertices < gr->pane->max_num_vertices) {
646 gr->num_vertices++;
647 }
648
649 gr->current_value = value;
650 if (value > gr->pane->max_value) {
651 hud_pane_set_max_value(gr->pane, value);
652 }
653 }
654
655 static void
656 hud_graph_destroy(struct hud_graph *graph)
657 {
658 FREE(graph->vertices);
659 if (graph->free_query_data)
660 graph->free_query_data(graph->query_data);
661 FREE(graph);
662 }
663
664 /**
665 * Read a string from the environment variable.
666 * The separators "+", ",", ":", and ";" terminate the string.
667 * Return the number of read characters.
668 */
669 static int
670 parse_string(const char *s, char *out)
671 {
672 int i;
673
674 for (i = 0; *s && *s != '+' && *s != ',' && *s != ':' && *s != ';';
675 s++, out++, i++)
676 *out = *s;
677
678 *out = 0;
679
680 if (*s && !i)
681 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) while "
682 "parsing a string\n", *s, *s);
683 return i;
684 }
685
686 static boolean
687 has_occlusion_query(struct pipe_screen *screen)
688 {
689 return screen->get_param(screen, PIPE_CAP_OCCLUSION_QUERY) != 0;
690 }
691
692 static boolean
693 has_streamout(struct pipe_screen *screen)
694 {
695 return screen->get_param(screen, PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS) != 0;
696 }
697
698 static boolean
699 has_pipeline_stats_query(struct pipe_screen *screen)
700 {
701 return screen->get_param(screen, PIPE_CAP_QUERY_PIPELINE_STATISTICS) != 0;
702 }
703
704 static void
705 hud_parse_env_var(struct hud_context *hud, const char *env)
706 {
707 unsigned num, i;
708 char name[256], s[256];
709 struct hud_pane *pane = NULL;
710 unsigned x = 10, y = 10;
711 unsigned width = 251, height = 100;
712 unsigned period = 500 * 1000; /* default period (1/2 second) */
713 const char *period_env;
714
715 /*
716 * The GALLIUM_HUD_PERIOD env var sets the graph update rate.
717 * The env var is in seconds (a float).
718 * Zero means update after every frame.
719 */
720 period_env = getenv("GALLIUM_HUD_PERIOD");
721 if (period_env) {
722 float p = (float) atof(period_env);
723 if (p >= 0.0f) {
724 period = (unsigned) (p * 1000 * 1000);
725 }
726 }
727
728 while ((num = parse_string(env, name)) != 0) {
729 env += num;
730
731 if (!pane) {
732 pane = hud_pane_create(x, y, x + width, y + height, period, 10);
733 if (!pane)
734 return;
735 }
736
737 /* Add a graph. */
738 /* IF YOU CHANGE THIS, UPDATE print_help! */
739 if (strcmp(name, "fps") == 0) {
740 hud_fps_graph_install(pane);
741 }
742 else if (strcmp(name, "cpu") == 0) {
743 hud_cpu_graph_install(pane, ALL_CPUS);
744 }
745 else if (sscanf(name, "cpu%u%s", &i, s) == 1) {
746 hud_cpu_graph_install(pane, i);
747 }
748 else if (strcmp(name, "samples-passed") == 0 &&
749 has_occlusion_query(hud->pipe->screen)) {
750 hud_pipe_query_install(pane, hud->pipe, "samples-passed",
751 PIPE_QUERY_OCCLUSION_COUNTER, 0, 0, FALSE);
752 }
753 else if (strcmp(name, "primitives-generated") == 0 &&
754 has_streamout(hud->pipe->screen)) {
755 hud_pipe_query_install(pane, hud->pipe, "primitives-generated",
756 PIPE_QUERY_PRIMITIVES_GENERATED, 0, 0, FALSE);
757 }
758 else {
759 boolean processed = FALSE;
760
761 /* pipeline statistics queries */
762 if (has_pipeline_stats_query(hud->pipe->screen)) {
763 static const char *pipeline_statistics_names[] =
764 {
765 "ia-vertices",
766 "ia-primitives",
767 "vs-invocations",
768 "gs-invocations",
769 "gs-primitives",
770 "clipper-invocations",
771 "clipper-primitives-generated",
772 "ps-invocations",
773 "hs-invocations",
774 "ds-invocations",
775 "cs-invocations"
776 };
777 for (i = 0; i < Elements(pipeline_statistics_names); ++i)
778 if (strcmp(name, pipeline_statistics_names[i]) == 0)
779 break;
780 if (i < Elements(pipeline_statistics_names)) {
781 hud_pipe_query_install(pane, hud->pipe, name,
782 PIPE_QUERY_PIPELINE_STATISTICS, i,
783 0, FALSE);
784 processed = TRUE;
785 }
786 }
787
788 /* driver queries */
789 if (!processed) {
790 if (!hud_driver_query_install(pane, hud->pipe, name)){
791 fprintf(stderr, "gallium_hud: unknown driver query '%s'\n", name);
792 }
793 }
794 }
795
796 if (*env == ':') {
797 env++;
798
799 if (!pane) {
800 fprintf(stderr, "gallium_hud: syntax error: unexpected ':', "
801 "expected a name\n");
802 break;
803 }
804
805 num = parse_string(env, s);
806 env += num;
807
808 if (num && sscanf(s, "%u", &i) == 1) {
809 hud_pane_set_max_value(pane, i);
810 }
811 else {
812 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) "
813 "after ':'\n", *env, *env);
814 }
815 }
816
817 if (*env == 0)
818 break;
819
820 /* parse a separator */
821 switch (*env) {
822 case '+':
823 env++;
824 break;
825
826 case ',':
827 env++;
828 y += height + hud->font.glyph_height * (pane->num_graphs + 2);
829
830 if (pane && pane->num_graphs) {
831 LIST_ADDTAIL(&pane->head, &hud->pane_list);
832 pane = NULL;
833 }
834 break;
835
836 case ';':
837 env++;
838 y = 10;
839 x += width + hud->font.glyph_width * 7;
840
841 if (pane && pane->num_graphs) {
842 LIST_ADDTAIL(&pane->head, &hud->pane_list);
843 pane = NULL;
844 }
845 break;
846
847 default:
848 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *env);
849 }
850 }
851
852 if (pane) {
853 if (pane->num_graphs) {
854 LIST_ADDTAIL(&pane->head, &hud->pane_list);
855 }
856 else {
857 FREE(pane);
858 }
859 }
860 }
861
862 static void
863 print_help(struct pipe_screen *screen)
864 {
865 int i, num_queries, num_cpus = hud_get_num_cpus();
866
867 puts("Syntax: GALLIUM_HUD=name1[+name2][...][:value1][,nameI...][;nameJ...]");
868 puts("");
869 puts(" Names are identifiers of data sources which will be drawn as graphs");
870 puts(" in panes. Multiple graphs can be drawn in the same pane.");
871 puts(" There can be multiple panes placed in rows and columns.");
872 puts("");
873 puts(" '+' separates names which will share a pane.");
874 puts(" ':[value]' specifies the initial maximum value of the Y axis");
875 puts(" for the given pane.");
876 puts(" ',' creates a new pane below the last one.");
877 puts(" ';' creates a new pane at the top of the next column.");
878 puts("");
879 puts(" Example: GALLIUM_HUD=\"cpu,fps;primitives-generated\"");
880 puts("");
881 puts(" Available names:");
882 puts(" fps");
883 puts(" cpu");
884
885 for (i = 0; i < num_cpus; i++)
886 printf(" cpu%i\n", i);
887
888 if (has_occlusion_query(screen))
889 puts(" samples-passed");
890 if (has_streamout(screen))
891 puts(" primitives-generated");
892
893 if (has_pipeline_stats_query(screen)) {
894 puts(" ia-vertices");
895 puts(" ia-primitives");
896 puts(" vs-invocations");
897 puts(" gs-invocations");
898 puts(" gs-primitives");
899 puts(" clipper-invocations");
900 puts(" clipper-primitives-generated");
901 puts(" ps-invocations");
902 puts(" hs-invocations");
903 puts(" ds-invocations");
904 puts(" cs-invocations");
905 }
906
907 if (screen->get_driver_query_info){
908 struct pipe_driver_query_info info;
909 num_queries = screen->get_driver_query_info(screen, 0, NULL);
910
911 for (i = 0; i < num_queries; i++){
912 screen->get_driver_query_info(screen, i, &info);
913 printf(" %s\n", info.name);
914 }
915 }
916
917 puts("");
918 }
919
920 struct hud_context *
921 hud_create(struct pipe_context *pipe, struct cso_context *cso)
922 {
923 struct hud_context *hud;
924 struct pipe_sampler_view view_templ;
925 unsigned i;
926 const char *env = debug_get_option("GALLIUM_HUD", NULL);
927
928 if (!env || !*env)
929 return NULL;
930
931 if (strcmp(env, "help") == 0) {
932 print_help(pipe->screen);
933 return NULL;
934 }
935
936 hud = CALLOC_STRUCT(hud_context);
937 if (!hud)
938 return NULL;
939
940 hud->pipe = pipe;
941 hud->cso = cso;
942 hud->uploader = u_upload_create(pipe, 256 * 1024, 16,
943 PIPE_BIND_VERTEX_BUFFER);
944
945 /* font */
946 if (!util_font_create(pipe, UTIL_FONT_FIXED_8X13, &hud->font)) {
947 u_upload_destroy(hud->uploader);
948 FREE(hud);
949 return NULL;
950 }
951
952 /* blend state */
953 hud->alpha_blend.rt[0].colormask = PIPE_MASK_RGBA;
954 hud->alpha_blend.rt[0].blend_enable = 1;
955 hud->alpha_blend.rt[0].rgb_func = PIPE_BLEND_ADD;
956 hud->alpha_blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_SRC_ALPHA;
957 hud->alpha_blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_INV_SRC_ALPHA;
958 hud->alpha_blend.rt[0].alpha_func = PIPE_BLEND_ADD;
959 hud->alpha_blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ZERO;
960 hud->alpha_blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
961
962 /* fragment shader */
963 hud->fs_color =
964 util_make_fragment_passthrough_shader(pipe,
965 TGSI_SEMANTIC_COLOR,
966 TGSI_INTERPOLATE_CONSTANT,
967 TRUE);
968
969 {
970 /* Read a texture and do .xxxx swizzling. */
971 static const char *fragment_shader_text = {
972 "FRAG\n"
973 "DCL IN[0], GENERIC[0], LINEAR\n"
974 "DCL SAMP[0]\n"
975 "DCL OUT[0], COLOR[0]\n"
976 "DCL TEMP[0]\n"
977
978 "TEX TEMP[0], IN[0], SAMP[0], RECT\n"
979 "MOV OUT[0], TEMP[0].xxxx\n"
980 "END\n"
981 };
982
983 struct tgsi_token tokens[1000];
984 struct pipe_shader_state state = {tokens};
985
986 if (!tgsi_text_translate(fragment_shader_text, tokens, Elements(tokens))) {
987 assert(0);
988 pipe_resource_reference(&hud->font.texture, NULL);
989 u_upload_destroy(hud->uploader);
990 FREE(hud);
991 return NULL;
992 }
993
994 hud->fs_text = pipe->create_fs_state(pipe, &state);
995 }
996
997 /* rasterizer */
998 hud->rasterizer.half_pixel_center = 1;
999 hud->rasterizer.bottom_edge_rule = 1;
1000 hud->rasterizer.depth_clip = 1;
1001 hud->rasterizer.line_width = 1;
1002 hud->rasterizer.line_last_pixel = 1;
1003
1004 /* vertex shader */
1005 {
1006 static const char *vertex_shader_text = {
1007 "VERT\n"
1008 "DCL IN[0..1]\n"
1009 "DCL OUT[0], POSITION\n"
1010 "DCL OUT[1], COLOR[0]\n" /* color */
1011 "DCL OUT[2], GENERIC[0]\n" /* texcoord */
1012 /* [0] = color,
1013 * [1] = (2/fb_width, 2/fb_height, xoffset, yoffset)
1014 * [2] = (xscale, yscale, 0, 0) */
1015 "DCL CONST[0..2]\n"
1016 "DCL TEMP[0]\n"
1017 "IMM[0] FLT32 { -1, 0, 0, 1 }\n"
1018
1019 /* v = in * (xscale, yscale) + (xoffset, yoffset) */
1020 "MAD TEMP[0].xy, IN[0], CONST[2].xyyy, CONST[1].zwww\n"
1021 /* pos = v * (2 / fb_width, 2 / fb_height) - (1, 1) */
1022 "MAD OUT[0].xy, TEMP[0], CONST[1].xyyy, IMM[0].xxxx\n"
1023 "MOV OUT[0].zw, IMM[0]\n"
1024
1025 "MOV OUT[1], CONST[0]\n"
1026 "MOV OUT[2], IN[1]\n"
1027 "END\n"
1028 };
1029
1030 struct tgsi_token tokens[1000];
1031 struct pipe_shader_state state = {tokens};
1032
1033 if (!tgsi_text_translate(vertex_shader_text, tokens, Elements(tokens))) {
1034 assert(0);
1035 pipe_resource_reference(&hud->font.texture, NULL);
1036 u_upload_destroy(hud->uploader);
1037 FREE(hud);
1038 return NULL;
1039 }
1040
1041 hud->vs = pipe->create_vs_state(pipe, &state);
1042 }
1043
1044 /* vertex elements */
1045 for (i = 0; i < 2; i++) {
1046 hud->velems[i].src_offset = i * 2 * sizeof(float);
1047 hud->velems[i].src_format = PIPE_FORMAT_R32G32_FLOAT;
1048 hud->velems[i].vertex_buffer_index = cso_get_aux_vertex_buffer_slot(cso);
1049 }
1050
1051 /* sampler view */
1052 u_sampler_view_default_template(
1053 &view_templ, hud->font.texture, hud->font.texture->format);
1054 hud->font_sampler_view = pipe->create_sampler_view(pipe, hud->font.texture,
1055 &view_templ);
1056
1057 /* sampler state (for font drawing) */
1058 hud->font_sampler_state.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1059 hud->font_sampler_state.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1060 hud->font_sampler_state.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1061 hud->font_sampler_state.normalized_coords = 0;
1062
1063 /* constants */
1064 hud->constbuf.buffer_size = sizeof(hud->constants);
1065 hud->constbuf.user_buffer = &hud->constants;
1066
1067 LIST_INITHEAD(&hud->pane_list);
1068
1069 hud_parse_env_var(hud, env);
1070 return hud;
1071 }
1072
1073 void
1074 hud_destroy(struct hud_context *hud)
1075 {
1076 struct pipe_context *pipe = hud->pipe;
1077 struct hud_pane *pane, *pane_tmp;
1078 struct hud_graph *graph, *graph_tmp;
1079
1080 LIST_FOR_EACH_ENTRY_SAFE(pane, pane_tmp, &hud->pane_list, head) {
1081 LIST_FOR_EACH_ENTRY_SAFE(graph, graph_tmp, &pane->graph_list, head) {
1082 LIST_DEL(&graph->head);
1083 hud_graph_destroy(graph);
1084 }
1085 LIST_DEL(&pane->head);
1086 FREE(pane);
1087 }
1088
1089 pipe->delete_fs_state(pipe, hud->fs_color);
1090 pipe->delete_fs_state(pipe, hud->fs_text);
1091 pipe->delete_vs_state(pipe, hud->vs);
1092 pipe_sampler_view_reference(&hud->font_sampler_view, NULL);
1093 pipe_resource_reference(&hud->font.texture, NULL);
1094 u_upload_destroy(hud->uploader);
1095 FREE(hud);
1096 }