* include/freetype/ftoutln.h (FT_Outline_Embolden): Fix prototype.

Reported by Xerxes.
This commit is contained in:
Werner Lemberg 2005-07-13 06:56:08 +00:00
parent 6e322e7852
commit e1f7d79f0d
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-07-12 Werner Lemberg <wl@gnu.org>
* include/freetype/ftoutln.h (FT_Outline_Embolden): Fix prototype.
Reported by Xerxes.
2005-07-04 Werner Lemberg <wl@gnu.org>
* include/freetype/internal/ftmemory.h (FT_REALLOC_ARRAY): Fix typo.

View File

@ -324,7 +324,7 @@ FT_BEGIN_HEADER
/* <Return> */
/* FreeType error code. 0 means success. */
/* */
FT_EXPORT_DEF( FT_Error )
FT_EXPORT( FT_Error )
FT_Outline_Embolden( FT_Outline* outline,
FT_Pos strength );

View File

@ -1703,8 +1703,10 @@
FT_GlyphLoader_CopyPoints( glyph->internal->loader, loader->gloader );
glyph->outline = glyph->internal->loader->base.outline;
#if 0
/* translate array so that (0,0) is the glyph's origin */
FT_Outline_Translate( &glyph->outline, -loader->pp1.x, 0 );
#endif
FT_Outline_Get_CBox( &glyph->outline, &bbox );
}