mirror of https://github.com/freetype/freetype
* include/freetype/ftoutln.h (FT_Outline_Embolden): Fix prototype.
Reported by Xerxes.
This commit is contained in:
parent
6e322e7852
commit
e1f7d79f0d
|
@ -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.
|
||||
|
|
|
@ -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 );
|
||||
|
||||
|
|
|
@ -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 );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue