diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-13 08:47:41 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-13 08:47:41 -0400 |
commit | fa4b6e00fd204998f6011420bdad60477b7a2f12 (patch) | |
tree | 4fd37e92f375ddb49e156b07811b8a2fe1ad6c0d /include/freetype/ftincrem.h | |
parent | 03130c5bcec3c885a1be005c24e192dfb57f3fe5 (diff) |
parentheses
Diffstat (limited to 'include/freetype/ftincrem.h')
-rw-r--r-- | include/freetype/ftincrem.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/freetype/ftincrem.h b/include/freetype/ftincrem.h index aaf689f..ced4891 100644 --- a/include/freetype/ftincrem.h +++ b/include/freetype/ftincrem.h @@ -176,9 +176,9 @@ FT_BEGIN_HEADER * */ typedef FT_Error - (*FT_Incremental_GetGlyphDataFunc)( FT_Incremental incremental, + (*FT_Incremental_GetGlyphDataFunc)(FT_Incremental incremental, FT_UInt glyph_index, - FT_Data* adata ); + FT_Data* adata); /*************************************************************************** @@ -201,8 +201,8 @@ FT_BEGIN_HEADER * */ typedef void - (*FT_Incremental_FreeGlyphDataFunc)( FT_Incremental incremental, - FT_Data* data ); + (*FT_Incremental_FreeGlyphDataFunc)(FT_Incremental incremental, + FT_Data* data); /*************************************************************************** @@ -239,10 +239,10 @@ FT_BEGIN_HEADER */ typedef FT_Error (*FT_Incremental_GetGlyphMetricsFunc) - ( FT_Incremental incremental, + (FT_Incremental incremental, FT_UInt glyph_index, FT_Bool vertical, - FT_Incremental_MetricsRec *ametrics ); + FT_Incremental_MetricsRec *ametrics); /************************************************************************** @@ -306,7 +306,7 @@ FT_BEGIN_HEADER * open_args.params = ¶meter; // we use one optional argument * * // open the font - * error = FT_Open_Face( library, &open_args, index, &face ); + * error = FT_Open_Face(library, &open_args, index, &face); * ... * } * @@ -341,7 +341,7 @@ FT_BEGIN_HEADER * an incremental loading object to be used by FreeType. * */ -#define FT_PARAM_TAG_INCREMENTAL FT_MAKE_TAG( 'i', 'n', 'c', 'r' ) +#define FT_PARAM_TAG_INCREMENTAL FT_MAKE_TAG('i', 'n', 'c', 'r') /* */ |