From: Jens Axboe Date: Wed, 7 Mar 2012 14:21:16 +0000 (+0100) Subject: gfio: remove boxes between graphs X-Git-Tag: gfio-0.1~231 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=38afe8338b4591e63eb650cfedbab7553fe4df7c gfio: remove boxes between graphs Signed-off-by: Jens Axboe --- diff --git a/graph.c b/graph.c index d97da595..663fe380 100644 --- a/graph.c +++ b/graph.c @@ -233,12 +233,6 @@ static void graph_draw_common(struct graph *g, cairo_t *cr, cairo_set_source_rgb(cr, 0, 0, 0); cairo_set_line_width (cr, 0.8); - cairo_move_to(cr, 0, 0); - cairo_line_to(cr, 0, g->ydim); - cairo_line_to(cr, g->xdim, g->ydim); - cairo_line_to(cr, g->xdim, 0); - cairo_line_to(cr, 0, 0); - /* for now just set margins at 10% of width. This is not very good. */ *x1 = g->xdim / 10.0; *x2 = 9.0 * *x1;