mirror of https://github.com/freetype/freetype
* src/sfnt/ttload.c (tt_face_load_metrics_header): Ignore missing
`hhea' table for SFNT Mac fonts. Change based on a patch by mpsuzuki@hiroshima-u.ac.jp.
This commit is contained in:
parent
53ac64e39f
commit
3774b997b0
|
@ -1,3 +1,9 @@
|
|||
2005-08-20 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/sfnt/ttload.c (tt_face_load_metrics_header): Ignore missing
|
||||
`hhea' table for SFNT Mac fonts. Change based on a patch by
|
||||
mpsuzuki@hiroshima-u.ac.jp.
|
||||
|
||||
2005-08-20 Masatake YAMATO <jet@gyve.org>
|
||||
|
||||
* src/otvalid/otvmod.c (otv_validate): Use ft_validator_run instead
|
||||
|
|
|
@ -1092,12 +1092,20 @@
|
|||
}
|
||||
else
|
||||
{
|
||||
/* The horizontal header is mandatory; return an error if we */
|
||||
/* don't find it. */
|
||||
/* The horizontal header is mandatory for most fonts; return */
|
||||
/* an error if we don't find it. */
|
||||
error = face->goto_table( face, TTAG_hhea, stream, 0 );
|
||||
if ( error )
|
||||
{
|
||||
error = SFNT_Err_Horiz_Header_Missing;
|
||||
|
||||
/* No `hhea' table necessary for SFNT Mac fonts. */
|
||||
if ( face->format_tag == TTAG_true )
|
||||
{
|
||||
FT_TRACE2(( "missing. This is an SFNT Mac font.\n"));
|
||||
error = SFNT_Err_Ok;
|
||||
}
|
||||
|
||||
goto Exit;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue