summaryrefslogtreecommitdiff
path: root/perf
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2012-01-04 10:53:28 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2012-01-11 12:43:43 +0000
commit23ca558a051ad7557476c77e6d53b5a76f3eb798 (patch)
tree7b202a1e20fade3fd435d6e5c4e2582ada368261 /perf
parent56a835eb9df7055922dccbc77ba48bd12e07f342 (diff)
downloadcairo-23ca558a051ad7557476c77e6d53b5a76f3eb798.tar.gz
perf/chart: Show values next to the column if too small to fit inside
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'perf')
-rw-r--r--perf/cairo-perf-chart.c20
1 files changed, 14 insertions, 6 deletions
diff --git a/perf/cairo-perf-chart.c b/perf/cairo-perf-chart.c
index 6195f3d87..8d3d51471 100644
--- a/perf/cairo-perf-chart.c
+++ b/perf/cairo-perf-chart.c
@@ -331,7 +331,6 @@ add_chart (struct chart *c,
if (c->relative) {
cairo_text_extents_t extents;
- cairo_bool_t show_label;
char buf[80];
double y;
@@ -346,11 +345,15 @@ add_chart (struct chart *c,
ceil (-dy*value - c->height/2.) + c->height/2.);
cairo_fill (c->cr);
+ /* Skip the label if the difference between the two is less than 0.1% */
+ if (fabs (value) < 0.1)
+ return;
+
cairo_save (c->cr);
cairo_set_font_size (c->cr, dx - 2);
if (value < 0) {
- sprintf (buf, "%.1f", value/100 - 1);
+ sprintf (buf, "%.1f", -value/100 + 1);
} else {
sprintf (buf, "%.1f", value/100 + 1);
}
@@ -364,21 +367,26 @@ add_chart (struct chart *c,
y = c->height/2;
}
+ if (y < 0) {
+ if (y > -extents.width - 6)
+ y -= extents.width + 6;
+ } else {
+ if (y < extents.width + 6)
+ y += extents.width + 6;
+ }
+
cairo_translate (c->cr,
floor (x) + (floor (x + dx) - floor (x))/2,
floor (y) + c->height/2.);
cairo_rotate (c->cr, -M_PI/2);
if (y < 0) {
cairo_move_to (c->cr, -extents.x_bearing -extents.width - 4, -extents.y_bearing/2);
- show_label = y < -extents.width - 6;
} else {
cairo_move_to (c->cr, 2, -extents.y_bearing/2);
- show_label = y > extents.width + 6;
}
cairo_set_source_rgb (c->cr, .95, .95, .95);
- if (show_label)
- cairo_show_text (c->cr, buf);
+ cairo_show_text (c->cr, buf);
cairo_restore (c->cr);
} else {
dy = (c->height - PAD) / c->max_value;