From d2da9d1c22d25d1f86ecd83c15ca9909fab8610a Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Fri, 19 Feb 2010 07:36:28 -0800 Subject: [PATCH] glamor: Reduce the noise from wide lines "fallback". --- glamor/glamor_polylines.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/glamor/glamor_polylines.c b/glamor/glamor_polylines.c index 5a7204b5e..acf6bf673 100644 --- a/glamor/glamor_polylines.c +++ b/glamor/glamor_polylines.c @@ -52,7 +52,10 @@ glamor_poly_lines(DrawablePtr drawable, GCPtr gc, int mode, int n, /* Don't try to do wide lines or non-solid fill style. */ if (gc->lineWidth != 0) { - glamor_fallback("glamor_poly_lines(): wide lines\n"); + /* This ends up in miSetSpans, which is accelerated as well as we + * can hope X wide lines will be. + */ + /*glamor_fallback("glamor_poly_lines(): wide lines\n");*/ goto fail; } if (gc->lineStyle != LineSolid ||