From e3be90bf2846969b6a1fb858b5399f534b5cb5c2 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Mon, 2 Jul 2007 14:58:58 +0000 Subject: [PATCH] formatting --- ChangeLog | 18 +++++++++--------- include/freetype/freetype.h | 19 +++++++++++-------- src/base/ftpatent.c | 19 +++++++++++-------- 3 files changed, 31 insertions(+), 25 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9424ca8d7..1bf87f2bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,19 +1,19 @@ 2007-07-01 David Turner - * include/freetype/freetype.h, src/base/ftpatent.c: adding - FT_Face_SetUnpatentedHinting to dynamically change the setting - after a face is created. + * include/freetype/freetype.h, src/base/ftpatent.c + (FT_Face_SetUnpatentedHinting): New function to dynamically change + the setting after a face is created. - * src/truetype/ttgload.c: fix a small bug that created distortions - in the bytecode interpreter results + * src/truetype/ttgload.c (TT_Load_Simple_Glyph): Fix a small bug + that created distortions in the bytecode interpreter results. 2007-06-30 David Turner - * src/truetype/ttinterp.c: add missing variable initialization, - gets rid of Valgrind fixes. + * src/truetype/ttinterp.c (Ins_IUP): Add missing variable + initialization. - * src/autofit/aflatin.c: get rid of an infinite loop in the case - of degenerate fonts. + * src/autofit/aflatin.c (af_latin_metric_init_blues): Get rid of an + infinite loop in the case of degenerate fonts. 2007-06-26 Rahul Bhalerao diff --git a/include/freetype/freetype.h b/include/freetype/freetype.h index 726599d2e..499c913c7 100644 --- a/include/freetype/freetype.h +++ b/include/freetype/freetype.h @@ -3389,7 +3389,8 @@ FT_BEGIN_HEADER /* 1 if this is a TrueType font that uses one of the patented */ /* opcodes, 0 otherwise. */ /* */ - /* 2.3.5 */ + /* */ + /* 2.3.5 */ /* */ FT_EXPORT( FT_Bool ) FT_Face_CheckTrueTypePatents( FT_Face face ); @@ -3407,18 +3408,20 @@ FT_BEGIN_HEADER /* */ /* */ /* face :: A face handle. */ - /* value :: new boolean setting */ + /* */ + /* value :: New boolean setting. */ /* */ /* */ - /* the old setting value. this will always be false if this is not */ - /* a SFNT font, or if the unpatented hinter is not compiled in the */ - /* this instance of the library. */ + /* The old setting value. This will always be false if this is not */ + /* a SFNT font, or if the unpatented hinter is not compiled in this */ + /* instance of the library. */ /* */ - /* 2.3.5 */ + /* */ + /* 2.3.5 */ /* */ FT_EXPORT( FT_Bool ) - FT_Face_SetUnpatentedHinting( FT_Face face, - FT_Bool value ); + FT_Face_SetUnpatentedHinting( FT_Face face, + FT_Bool value ); /* */ diff --git a/src/base/ftpatent.c b/src/base/ftpatent.c index f598a3c44..d63f191c3 100644 --- a/src/base/ftpatent.c +++ b/src/base/ftpatent.c @@ -254,25 +254,28 @@ } + /* documentation is in freetype.h */ + FT_EXPORT_DEF( FT_Bool ) - FT_Face_SetUnpatentedHinting( FT_Face face, - FT_Bool value ) + FT_Face_SetUnpatentedHinting( FT_Face face, + FT_Bool value ) { FT_Bool result = 0; -#if defined(TT_CONFIG_OPTION_UNPATENTED_HINTING) && \ - !defined(TT_CONFIG_OPTION_BYTECODE_INTEPRETER) - if ( face && FT_IS_SFNT(face) ) + +#if defined( TT_CONFIG_OPTION_UNPATENTED_HINTING ) && \ + !defined( TT_CONFIG_OPTION_BYTECODE_INTEPRETER ) + if ( face && FT_IS_SFNT( face ) ) { result = !face->internal->ignore_unpatented_hinter; face->internal->ignore_unpatented_hinter = !value; } #else - FT_UNUSED(face); - FT_UNUSED(value); + FT_UNUSED( face ); + FT_UNUSED( value ); #endif - return result; + return result; } /* END */