Some clean-up.
This commit is contained in:
parent
fc3da857a9
commit
2bb6ee32c2
43
ChangeLog
43
ChangeLog
|
@ -1,32 +1,35 @@
|
||||||
2003-08-18 David Turner <david@freetype.org>
|
2003-08-18 David Turner <david@freetype.org>
|
||||||
|
|
||||||
* include/freetype/config/ftoption.h: disabling TrueType bytecode
|
* include/freetype/config/ftoption.h: Disabling TrueType bytecode
|
||||||
interpreter, until the UNPATENTED_HINTING works as advertised
|
interpreter until the UNPATENTED_HINTING works as advertised.
|
||||||
|
|
||||||
* src/autohint/ahhint.c (ah_hinter_load_glyph): fixed bug
|
* src/autohint/ahhint.c (ah_hinter_load_glyph): Use `|' for
|
||||||
|
setting `load_flags'.
|
||||||
|
|
||||||
* Jamfile: adding the "refdoc" target to the Jamfile in order to
|
* Jamfile: Adding the `refdoc' target to the Jamfile in order to
|
||||||
build the API Reference in "docs/reference" automatically
|
build the API Reference in `docs/reference' automatically.
|
||||||
|
|
||||||
* include/freetype/t1tables.h, src/cid/cidtoken.h, src/type1/t1tokens.h,
|
* include/freetype/t1tables.h (PS_FontInfoRec), src/cid/cidtoken.h,
|
||||||
src/type42/t42parse.c:
|
src/type1/t1tokens.h, src/type42/t42parse.c: Resetting the types of
|
||||||
|
`italic_angle', `underline_position', and `underline_thickness' to
|
||||||
|
their previous values (i.e., long, short, and ushort) in order to
|
||||||
|
avoid breaking binary compatibility.
|
||||||
|
|
||||||
re-setting the types of "italic_angle", "underline_position" and
|
* include/freetype/ttunpat.h: Fixing documentation comment.
|
||||||
"underline_thickness" to their previous values (i.e. long, short and
|
|
||||||
ushort), in order to avoid breaking binary compatibility
|
|
||||||
|
|
||||||
* include/freetype/ttunpath.h: fixing documentation comment
|
* include/freetype/config/ftoption.h, devel/ftoption.h
|
||||||
|
(TT_CONFIG_OPTION_OPTION_COMPILE_UNPATENTED_HINTING): Replaced
|
||||||
|
with...
|
||||||
|
(TT_CONFIG_OPTION_UNPATENTED_HINTING): This. Updated all users.
|
||||||
|
(TT_CONFIG_OPTION_FORCE_UNPATENTED_HINTING): Removed.
|
||||||
|
|
||||||
* include/freetype/config/ftoption.h, devel/ftoption.h,
|
* include/freetype/internal/ftobjs.h (FT_DEBUG_HOOK_TYPE1): Removed.
|
||||||
include/freetype/internal/ftobjs.h, include/freetype/internal/tttypes.h,
|
(FT_DEBUG_HOOK_UNPATENTED_HINTING): New macro. Use this with
|
||||||
src/truetype/ttinterp.c, src/truetype/ttobjs.c, src/truetype/ttobjs.h:
|
`FT_Set_Debug_Hook' to get the same effect as the removed
|
||||||
|
TT_CONFIG_OPTION_FORCE_UNPATENTED_HINTING.
|
||||||
|
|
||||||
changed the name of TT_CONFIG_OPTION_COMPILE_UNPATENTED_HINTING to
|
* src/truetype/ttobjs.c (tt_face_init): Use
|
||||||
the simpler TT_CONFIG_OPTION_UNPATENTED_HINTING
|
`FT_DEBUG_HOOK_UNPATENTED_HINTING'.
|
||||||
|
|
||||||
removed the macro TT_CONFIG_OPTION_FORCE_UNPATENTED_HINTING. Instead,
|
|
||||||
the same effect can be used by setting a debug-hook with
|
|
||||||
FT_DEBUG_HOOK_UNPATENTED_HINTING globally with FT_Set_Debug_Hook()
|
|
||||||
|
|
||||||
2003-08-06 Werner Lemberg <wl@gnu.org>
|
2003-08-06 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
|
|
|
@ -232,7 +232,7 @@
|
||||||
( library->debug_hooks[ FT_DEBUG_HOOK_UNPATENTED_HINTING ] != NULL );
|
( library->debug_hooks[ FT_DEBUG_HOOK_UNPATENTED_HINTING ] != NULL );
|
||||||
|
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
|
||||||
for ( i = 0; i < num_params && !face->unpatented_hinting; i++ )
|
for ( i = 0; i < num_params && !face->unpatented_hinting; i++ )
|
||||||
|
|
Loading…
Reference in New Issue