* 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'.
This commit is contained in:
parent
032646139d
commit
88242072b8
|
@ -1,3 +1,10 @@
|
|||
2006-02-24 Chia-I Wu <b90201047@ntu.edu.tw>
|
||||
|
||||
* 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 <b90201047@ntu.edu.tw>
|
||||
|
||||
* include/freetype/ftbitmap.h (FT_Bitmap_Embolden): Update
|
||||
|
|
|
@ -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 )
|
||||
|
|
Loading…
Reference in New Issue