shithub: freetype+ttf2subf

Download patch

ref: ea5268d2d2b61dcefdc116e061dd7b2ffb486b02
parent: f4e1c8bddae00aab33b24e3e4ea7fbce383286ee
author: suzuki toshiya <[email protected]>
date: Fri Jul 31 20:30:20 EDT 2009

smooth: Fix a data type mismatching with its source.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2009-07-31  suzuki toshiya <[email protected]>
 
+	smooth: Fix a data type mismatching with its source.
+
+	* src/smooth/ftgrays.c (gray_render_line): The type
+	of `area' is matched with TWorker.area.
+
+2009-07-31  suzuki toshiya <[email protected]>
+
 	cache: Disable the legacy compatibility if 16-bit system.
 
 	* src/cache/ftcbasic.c (FTC_ImageCache_Lookup): Exclude
--- a/src/smooth/ftgrays.c
+++ b/src/smooth/ftgrays.c
@@ -739,7 +739,7 @@
     {
       TCoord  ex     = TRUNC( ras.x );
       TCoord  two_fx = (TCoord)( ( ras.x - SUBPIXELS( ex ) ) << 1 );
-      TPos    area;
+      TArea   area;
 
 
       first = ONE_PIXEL;