diff --git a/ChangeLog b/ChangeLog index caae98e54..bf0746a51 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-02-24 Chia-I Wu + + * src/base/ftoutln.c (FT_OUTLINE_GET_CONTOUR, ft_contour_has, + ft_contour_enclosed, ft_outline_get_orientation): Commented out. We + have to wait until `FT_GlyphSlot_Own_Bitmap' is stabilized. + (FT_Outline_Embolden): Use `FT_Outline_Get_Orientation'. + 2006-02-24 Chia-I Wu * include/freetype/ftbitmap.h (FT_Bitmap_Embolden): Update diff --git a/src/base/ftoutln.c b/src/base/ftoutln.c index 64823a728..e3008b663 100644 --- a/src/base/ftoutln.c +++ b/src/base/ftoutln.c @@ -668,6 +668,7 @@ } +#if 0 #define FT_OUTLINE_GET_CONTOUR( outline, c, first, last ) \ do { \ (first) = ( c > 0 ) ? (outline)->points + \ @@ -828,6 +829,7 @@ return orient; } +#endif /* documentation is in ftoutln.h */ @@ -850,7 +852,7 @@ if ( strength == 0 ) return FT_Err_Ok; - orientation = ft_outline_get_orientation( outline ); + orientation = FT_Outline_Get_Orientation( outline ); if ( orientation == FT_ORIENTATION_NONE ) { if ( outline->n_contours )