[sfnt] Accept version 3 of `EBLC' and `CBLC' tables also.
* src/sfnt/ttsbit.c (tt_face_load_sbit): Implement it.
This commit is contained in:
parent
be32b168ac
commit
abb33121ee
|
@ -1,4 +1,10 @@
|
||||||
2015-11-06 Philipp Knechtges <philipp-dev@knechtges.com>
|
2015-11-08 Behdad Esfahbod <behdad@behdad.org>
|
||||||
|
|
||||||
|
[sfnt] Accept version 3 of `EBLC' and `CBLC' tables also.
|
||||||
|
|
||||||
|
* src/sfnt/ttsbit.c (tt_face_load_sbit): Implement it.
|
||||||
|
|
||||||
|
2015-11-08 Philipp Knechtges <philipp-dev@knechtges.com>
|
||||||
|
|
||||||
[autofit] Don't distort (latin) glyphs too much (#46195).
|
[autofit] Don't distort (latin) glyphs too much (#46195).
|
||||||
|
|
||||||
|
|
|
@ -104,7 +104,8 @@
|
||||||
version = FT_NEXT_LONG( p );
|
version = FT_NEXT_LONG( p );
|
||||||
num_strikes = FT_NEXT_ULONG( p );
|
num_strikes = FT_NEXT_ULONG( p );
|
||||||
|
|
||||||
if ( ( (FT_ULong)version & 0xFFFF0000UL ) != 0x00020000UL )
|
if ( ( (FT_ULong)version & 0xFFFF0000UL ) != 0x00020000UL &&
|
||||||
|
( (FT_ULong)version & 0xFFFF0000UL ) != 0x00030000UL )
|
||||||
{
|
{
|
||||||
error = FT_THROW( Unknown_File_Format );
|
error = FT_THROW( Unknown_File_Format );
|
||||||
goto Exit;
|
goto Exit;
|
||||||
|
|
Loading…
Reference in New Issue