From 88242072b873b446ab93f976312ce4669a8ccf76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wu=2C=20Chia-I=20=28=E5=90=B3=E4=BD=B3=E4=B8=80=29?= Date: Fri, 24 Feb 2006 11:53:21 +0000 Subject: [PATCH] * 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'. --- ChangeLog | 7 +++++++ src/base/ftoutln.c | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) 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 )