diff options
Diffstat (limited to 'include/freetype/ftautoh.h')
-rw-r--r-- | include/freetype/ftautoh.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/include/freetype/ftautoh.h b/include/freetype/ftautoh.h index bf97b3f..08ae597 100644 --- a/include/freetype/ftautoh.h +++ b/include/freetype/ftautoh.h @@ -93,17 +93,17 @@ FT_BEGIN_HEADER * FT_Prop_GlyphToScriptMap prop; * * - * FT_Init_FreeType( &library ); - * FT_New_Face( library, "foo.ttf", 0, &face ); + * FT_Init_FreeType(&library); + * FT_New_Face(library, "foo.ttf", 0, &face); * * prop.face = face; * - * FT_Property_Get( library, "autofitter", - * "glyph-to-script-map", &prop ); + * FT_Property_Get(library, "autofitter", + * "glyph-to-script-map", &prop); * * // adjust `prop.map' as needed right here * - * FT_Load_Glyph( face, ..., FT_LOAD_FORCE_AUTOHINT ); + * FT_Load_Glyph(face, ..., FT_LOAD_FORCE_AUTOHINT); * } * */ @@ -272,10 +272,10 @@ FT_BEGIN_HEADER * FT_UInt fallback_script = FT_AUTOHINTER_SCRIPT_NONE; * * - * FT_Init_FreeType( &library ); + * FT_Init_FreeType(&library); * - * FT_Property_Set( library, "autofitter", - * "fallback-script", &fallback_script ); + * FT_Property_Set(library, "autofitter", + * "fallback-script", &fallback_script); * } * * @note: @@ -310,15 +310,15 @@ FT_BEGIN_HEADER * FT_Prop_IncreaseXHeight prop; * * - * FT_Init_FreeType( &library ); - * FT_New_Face( library, "foo.ttf", 0, &face ); - * FT_Set_Char_Size( face, 10 * 64, 0, 72, 0 ); + * FT_Init_FreeType(&library); + * FT_New_Face(library, "foo.ttf", 0, &face); + * FT_Set_Char_Size(face, 10 * 64, 0, 72, 0); * * prop.face = face; * prop.limit = 14; * - * FT_Property_Set( library, "autofitter", - * "increase-x-height", &prop ); + * FT_Property_Set(library, "autofitter", + * "increase-x-height", &prop); * } * * @note: |