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.
This commit is contained in:
Werner Lemberg 2011-03-07 05:40:42 +01:00
parent c9bdfa7e65
commit 6c045535ea
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,12 @@
2011-03-07 Alexei Podtelezhnikov <apodtele@gmail.com>
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 <wl@gnu.org>
Fix autohinting fallback.

View File

@ -897,7 +897,7 @@ typedef ptrdiff_t FT_PtrDist;
}
level = 0;
while ( dx > ONE_PIXEL / 4 )
while ( dx > ONE_PIXEL / 6 )
{
dx >>= 2;
level++;