* src/smooth/ftgrays.c (gray_render_scanline): Fix bug which caused


			
			
				BRANCH-2-1-5
			
			
		
Werner Lemberg 23 years ago
parent 2ee087e487
commit 5e99e92619
  1. 5
      ChangeLog
  2. 2
      src/smooth/ftgrays.c

@ -1,3 +1,8 @@
2002-01-27 Giuliano Pochini <pochini@shiny.it>
* src/smooth/ftgrays.c (gray_render_scanline): Fix bug which caused
bad rendering of thin lines (less than one pixel thick).
2002-01-25 Werner Lemberg <wl@gnu.org>
* src/cff/cffdrivr.c (cff_get_name_index): Make last patch work

@ -553,7 +553,7 @@
if ( ex1 != ex2 )
{
p = ONE_PIXEL * ( y2 - y1 );
p = ONE_PIXEL * ( y2 - y1 + delta );
lift = p / dx;
rem = p % dx;
if ( rem < 0 )

Loading…
Cancel
Save