2006-05-31 Yong Li (rigel863@gmail.com) reviewed by: plam, Bedhad Esfahbod
TrueType Collection table offsets are absolute, not relative.
This commit is contained in:
parent
31b7e6d7f5
commit
1c14f2d963
|
@ -1,3 +1,10 @@
|
|||
2006-05-31 Yong Li (rigel863@gmail.com)
|
||||
reviewed by: plam, Bedhad Esfahbod
|
||||
|
||||
* src/ftglue.c (_hb_ftglue_face_goto_table):
|
||||
|
||||
TrueType Collection table offsets are absolute, not relative.
|
||||
|
||||
2006-04-27 Paolo Borelli (pborelli@katamail.com)
|
||||
reviewed by: plam
|
||||
|
||||
|
|
|
@ -290,7 +290,7 @@ ftglue_face_goto_table( FT_Face face,
|
|||
if ( tag == the_tag )
|
||||
{
|
||||
LOG(( "TrueType table (start: %ld) (size: %ld)\n", start, size ));
|
||||
error = ftglue_stream_seek( stream, offset+start );
|
||||
error = ftglue_stream_seek( stream, start );
|
||||
goto FoundIt;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue