summaryrefslogtreecommitdiff
path: root/include/freetype/ftsynth.h
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2002-07-01 21:33:48 +0000
committerDavid Turner <david@freetype.org>2002-07-01 21:33:48 +0000
commit58ad559a34e06c1021b15876795417ae4a668fe7 (patch)
tree00e1d85d2a4644b23533cbae0ad076b6ad901482 /include/freetype/ftsynth.h
parent0d73b0c49abc97cb89d05bb5295769f289d271e2 (diff)
downloadfreetype2-58ad559a34e06c1021b15876795417ae4a668fe7.tar.gz
* include/freetype/ftsynth.h, src/base/ftsynth.c: rewriting the automatic
style synthesis functions, now renamed to FT_GlyphSlot_Oblique and FT_GlyphSlot_Embolden
Diffstat (limited to 'include/freetype/ftsynth.h')
-rw-r--r--include/freetype/ftsynth.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/include/freetype/ftsynth.h b/include/freetype/ftsynth.h
index 4c7752ae2..2424ff627 100644
--- a/include/freetype/ftsynth.h
+++ b/include/freetype/ftsynth.h
@@ -48,16 +48,14 @@ FT_BEGIN_HEADER
/* This code is completely experimental -- use with care! */
/* It will probably be completely rewritten in the future */
/* or even integrated into the library. */
- FT_EXPORT( FT_Error )
- FT_Outline_Embolden( FT_GlyphSlot original,
- FT_Outline* outline,
- FT_Pos* advance );
+ FT_EXPORT( void )
+ FT_GlyphSlot_Embolden( FT_GlyphSlot slot );
- FT_EXPORT( FT_Error )
- FT_Outline_Oblique( FT_GlyphSlot original,
- FT_Outline* outline,
- FT_Pos* advance );
+ FT_EXPORT( void )
+ FT_GlyphSlot_Oblique( FT_GlyphSlot slot );
+
+ /* */
FT_END_HEADER