formatting
This commit is contained in:
parent
0d832659c7
commit
2e35c9b406
|
@ -1,14 +1,13 @@
|
||||||
2001-03-05 Tom Kacvinsky <tjk@ams.org>
|
2001-03-05 Tom Kacvinsky <tjk@ams.org>
|
||||||
|
|
||||||
* src/cff/cffgload.c (CFF_Load_Glyph): Set glyph control data to the
|
* src/cff/cffgload.c (CFF_Load_Glyph): Set glyph control data to the
|
||||||
the Type 2 glyph charstring (used by conversion programs). Submitted
|
the Type 2 glyph charstring (used by conversion programs).
|
||||||
by Ha Shao <hashao@chinese.com>.
|
Submitted by Ha Shao <hashao@chinese.com>.
|
||||||
|
|
||||||
2001-03-04 Antoine Leca <Antoine.Leca@renault.fr>
|
2001-03-04 Antoine Leca <Antoine.Leca@renault.fr>
|
||||||
|
|
||||||
* include/freetype/ttnameid.h: Correct a stupid typo which prevented
|
* include/freetype/ttnameid.h: Correct a stupid typo which prevented
|
||||||
correct compilation (TT_MS_LANGID_TIGRIGNA_ETHIOPIA appeared twice).
|
correct compilation (TT_MS_LANGID_TIGRIGNA_ETHIOPIA appeared twice).
|
||||||
I am sorry for the inconvenience :-(.
|
|
||||||
|
|
||||||
2001-03-04 Werner Lemberg <wl@gnu.org>
|
2001-03-04 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
|
|
|
@ -2139,6 +2139,7 @@
|
||||||
{
|
{
|
||||||
CFF_Index csindex = cff->charstrings_index;
|
CFF_Index csindex = cff->charstrings_index;
|
||||||
|
|
||||||
|
|
||||||
CFF_Prepare_Decoder( &decoder, glyph_index );
|
CFF_Prepare_Decoder( &decoder, glyph_index );
|
||||||
error = CFF_Parse_CharStrings( &decoder, charstring, charstring_len );
|
error = CFF_Parse_CharStrings( &decoder, charstring, charstring_len );
|
||||||
|
|
||||||
|
@ -2147,9 +2148,10 @@
|
||||||
/* We set control_data and control_len if charstrings is loaded. */
|
/* We set control_data and control_len if charstrings is loaded. */
|
||||||
/* See how charstring loads at CFF_Access_Element() in cffload.c. */
|
/* See how charstring loads at CFF_Access_Element() in cffload.c. */
|
||||||
|
|
||||||
glyph->root.control_data = csindex.bytes + csindex.offsets[glyph_index] - 1;
|
glyph->root.control_data =
|
||||||
glyph->root.control_len = charstring_len;
|
csindex.bytes + csindex.offsets[glyph_index] - 1;
|
||||||
|
glyph->root.control_len =
|
||||||
|
charstring_len;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* save new glyph tables */
|
/* save new glyph tables */
|
||||||
|
|
Loading…
Reference in New Issue