From 6c045535eaa717a05279cbc5724a489bfc9d3bf1 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Mon, 7 Mar 2011 05:40:42 +0100 Subject: [PATCH] Quick fix for Savannah bug #32671. This isn't the optimal solution yet, but it restores the previous rendering quality (more or less). * src/smooth/ftgrays.c (gray_render_conic): Do more splitting. --- ChangeLog | 9 +++++++++ src/smooth/ftgrays.c | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a66d64948..f43d61364 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2011-03-07 Alexei Podtelezhnikov + + Quick fix for Savannah bug #32671. + + This isn't the optimal solution yet, but it restores the previous + rendering quality (more or less). + + * src/smooth/ftgrays.c (gray_render_conic): Do more splitting. + 2011-03-06 Werner Lemberg Fix autohinting fallback. diff --git a/src/smooth/ftgrays.c b/src/smooth/ftgrays.c index a85e16086..648c75e88 100644 --- a/src/smooth/ftgrays.c +++ b/src/smooth/ftgrays.c @@ -897,7 +897,7 @@ typedef ptrdiff_t FT_PtrDist; } level = 0; - while ( dx > ONE_PIXEL / 4 ) + while ( dx > ONE_PIXEL / 6 ) { dx >>= 2; level++;