fix a typo that force CVT scaling to be re-run on each glyph load

This commit is contained in:
David Turner 2007-05-11 14:10:30 +00:00
Родитель 94be20ea82
Коммит a8b45e6183
2 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -43,6 +43,11 @@
* src/base/ftglyph.c (FT_Glyph_Copy): Always set second argument to
zero in case of error. This fixes Savannah bug #19689.
2007-04-25 Boris Letocha <b.letocha@cz.gmc.net>
* src/truetype/ttobjs.c: fix a typo that created a speed regression
in the TrueType bytecode loader
2007-04-10 Martin Horak <horakm@centrum.cz>
* src/sfnt/sfobjs.c (sfnt_load_face) [FT_CONFIG_OPTION_INCREMENTAL]:

Просмотреть файл

@ -693,6 +693,8 @@
size->GS = tt_default_graphics_state;
error = tt_size_run_prep( size );
if (!error)
size->cvt_ready = 1;
}
Exit:
return error;