[cff,cid,type1] Demote old engine for lack of CFF2.

* src/cff/cffobjs.c (cff_iriver_init): Always default to Adobe engine.
* src/cid/cidobjs.c (cid_driver_init): Ditto.
* src/type1/t1objs.c (T1_Driver_Init): Ditto.
This commit is contained in:
Alexei Podtelezhnikov 2020-11-20 15:24:42 -05:00
parent 1286f58c29
commit 5abd252a0a
5 changed files with 12 additions and 12 deletions

View File

@ -1,3 +1,11 @@
2020-11-20 Alexei Podtelezhnikov <apodtele@gmail.com>
[cff,cid,type1] Demote old engine for lack of CFF2.
* src/cff/cffobjs.c (cff_iriver_init): Always default to Adobe engine.
* src/cid/cidobjs.c (cid_driver_init): Ditto.
* src/type1/t1objs.c (T1_Driver_Init): Ditto.
2020-11-09 Werner Lemberg <wl@gnu.org>
* src/type42/t42parse.c (t42_parse_sfnts): More tracing messages.

View File

@ -2,6 +2,10 @@ CHANGES BETWEEN 2.10.4 and 2.11.0
I. IMPORTANT CHANGES
- The legacy Type 1/CFF engine is further demoted due to lack of
CFF2 charstring support. You now need to use FT_Property_Set to
enable it besides T1/CFF_CONFIG_OPTION_OLD_ENGINE options.
II. MISCELLANEOUS

View File

@ -1174,11 +1174,7 @@
/* set default property values, cf. `ftcffdrv.h' */
#ifdef CFF_CONFIG_OPTION_OLD_ENGINE
driver->hinting_engine = FT_HINTING_FREETYPE;
#else
driver->hinting_engine = FT_HINTING_ADOBE;
#endif
driver->no_stem_darkening = TRUE;

View File

@ -479,11 +479,7 @@
/* set default property values, cf. `ftt1drv.h' */
#ifdef T1_CONFIG_OPTION_OLD_ENGINE
driver->hinting_engine = FT_HINTING_FREETYPE;
#else
driver->hinting_engine = FT_HINTING_ADOBE;
#endif
driver->no_stem_darkening = TRUE;

View File

@ -598,11 +598,7 @@
/* set default property values, cf. `ftt1drv.h' */
#ifdef T1_CONFIG_OPTION_OLD_ENGINE
driver->hinting_engine = FT_HINTING_FREETYPE;
#else
driver->hinting_engine = FT_HINTING_ADOBE;
#endif
driver->no_stem_darkening = TRUE;