From 3058af33000760e95f8154cb0edfe431e5961d5a Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Sat, 16 Jun 2001 07:48:30 +0000 Subject: [PATCH] formatting --- ChangeLog | 20 ++++++++++++++------ include/freetype/internal/ftcalc.h | 22 +++++++++++----------- src/base/ftcalc.c | 8 ++++---- 3 files changed, 29 insertions(+), 21 deletions(-) diff --git a/ChangeLog b/ChangeLog index cde12da25..d174be3d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,12 +1,20 @@ 2001-06-14 David Turner - * src/base/ftcalc.c, include/internal/ftcalc.h, src/truetype/ttinterp.c, - include/config/ftoption.h: modified the TrueType interpreter to let it - use the new trigonometric functions provided in "fttrigon.h". This - gets rid of some old 64-bit computation routines, as well as many - warnings when compiling the library with the "long long" 64-bit - integer type. + Modified the TrueType interpreter to let it use the new + trigonometric functions provided in "fttrigon.h". This gets rid of + some old 64-bit computation routines, as well as many warnings when + compiling the library with the "long long" 64-bit integer type. + * include/freetype/config/ftoption.h: Undefine + FT_CONFIG_OPTION_OLD_CALCS. + * include/freetype/internal/ftcalc.h: Rearrange use of + FT_CONFIG_OPTION_OLD_CALCS. + * src/base/ftcalc.c: Add declaration of FT_Int64 if + FT_CONFIG_OPTION_OLD_CALCS isn't defined. + * src/truetype/ttinterp.c: Use FT_TRIGONOMETRY_H. + (Norm): Add a special version if FT_CONFIG_OPTION_OLD_CALCS isn't + defined. + (Current_Ratio, Normalize): Simplify code. 2001-06-11 Mike Owens diff --git a/include/freetype/internal/ftcalc.h b/include/freetype/internal/ftcalc.h index e47f4024e..cb588e1b4 100644 --- a/include/freetype/internal/ftcalc.h +++ b/include/freetype/internal/ftcalc.h @@ -31,15 +31,15 @@ FT_BEGIN_HEADER #ifdef FT_CONFIG_OPTION_OLD_CALCS -# ifdef FT_LONG64 +#ifdef FT_LONG64 typedef FT_INT64 FT_Int64; -# define ADD_64( x, y, z ) z = (x) + (y) -# define MUL_64( x, y, z ) z = (FT_Int64)(x) * (y) -# define DIV_64( x, y ) ( (x) / (y) ) +#define ADD_64( x, y, z ) z = (x) + (y) +#define MUL_64( x, y, z ) z = (FT_Int64)(x) * (y) +#define DIV_64( x, y ) ( (x) / (y) ) -# define SQRT_64( z ) FT_Sqrt64( z ) +#define SQRT_64( z ) FT_Sqrt64( z ) /*************************************************************************/ /* */ @@ -60,7 +60,7 @@ FT_BEGIN_HEADER FT_EXPORT( FT_Int32 ) FT_Sqrt64( FT_Int64 l ); -# else /* !FT_LONG64 */ +#else /* !FT_LONG64 */ typedef struct FT_Int64_ @@ -71,9 +71,9 @@ FT_BEGIN_HEADER } FT_Int64; -# define ADD_64( x, y, z ) FT_Add64( &x, &y, &z ) -# define MUL_64( x, y, z ) FT_MulTo64( x, y, &z ) -# define DIV_64( x, y ) FT_Div64by32( &x, y ) +#define ADD_64( x, y, z ) FT_Add64( &x, &y, &z ) +#define MUL_64( x, y, z ) FT_MulTo64( x, y, &z ) +#define DIV_64( x, y ) FT_Div64by32( &x, y ) /*************************************************************************/ @@ -145,7 +145,7 @@ FT_BEGIN_HEADER FT_Int32 y ); -# define SQRT_64( z ) FT_Sqrt64( &z ) +#define SQRT_64( z ) FT_Sqrt64( &z ) /*************************************************************************/ /* */ @@ -165,7 +165,7 @@ FT_BEGIN_HEADER /* */ FT_EXPORT( FT_Int32 ) FT_Sqrt64( FT_Int64* x ); -# endif /* !FT_LONG64 */ +#endif /* !FT_LONG64 */ #endif /* FT_CONFIG_OPTION_OLD_CALCS */ diff --git a/src/base/ftcalc.c b/src/base/ftcalc.c index ab2ced392..8ced815c2 100644 --- a/src/base/ftcalc.c +++ b/src/base/ftcalc.c @@ -41,11 +41,11 @@ /* we need to define a 64-bits data type here */ #ifndef FT_CONFIG_OPTION_OLD_CALCS -# ifdef FT_LONG64 +#ifdef FT_LONG64 typedef FT_INT64 FT_Int64; -# else +#else typedef struct FT_Int64_ { @@ -54,9 +54,9 @@ } FT_Int64; -# endif +#endif /* FT_LONG64 */ -#endif +#endif /* !FT_CONFIG_OPTION_OLD_CALCS */ /*************************************************************************/