[ftfuzzer] Always use Adobe CFF engine.

* src/tools/ftfuzzer/ftfuzzer.cc (FT_Global::FT_Global): Implement
it.
This commit is contained in:
Werner Lemberg 2016-12-22 08:25:42 +01:00
parent 7209110345
commit ada8297175
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2016-12-22 Werner Lemberg <wl@gnu.org>
[ftfuzzer] Always use Adobe CFF engine.
* src/tools/ftfuzzer/ftfuzzer.cc (FT_Global::FT_Global): Implement
it.
2016-12-21 Werner Lemberg <wl@gnu.org>
* src/truetype/ttgxvar.c (TT_Vary_Apply_Glyph_Deltas): Thinko.

View File

@ -55,6 +55,14 @@
struct FT_Global {
FT_Global() {
InitResult = FT_Init_FreeType( &library );
if ( InitResult )
return;
// try to activate Adobe's CFF engine; it might not be the default
unsigned int cff_hinting_engine = FT_CFF_HINTING_ADOBE;
FT_Property_Set( library,
"cff",
"hinting-engine", &cff_hinting_engine );
}
~FT_Global() {
FT_Done_FreeType( library );