* src/pfr/pfrgload.c (pfr_glyph_load_compound): fixing a small composite
glyph loader bug that caused accents to be misplaced in a number of glyphs..
This commit is contained in:
parent
a0d8abf98d
commit
37b263e93a
|
@ -1,3 +1,9 @@
|
||||||
|
2002-06-22 Detlef Würkner <TetiSoft@apg.lahn.de>
|
||||||
|
|
||||||
|
* src/pfr/pfrgload.c (pfr_glyph_load_compound): fixing a small composite
|
||||||
|
glyph loader bug that caused accents to be misplaced in a number of
|
||||||
|
glyphs..
|
||||||
|
|
||||||
2002-06-21 Sven Neuman <sven@convergence.de>
|
2002-06-21 Sven Neuman <sven@convergence.de>
|
||||||
|
|
||||||
* src/pfr/pfrobjs.h, src/pfr/pfrobjs.c, src/pfr/pfrload.c,
|
* src/pfr/pfrobjs.h, src/pfr/pfrobjs.c, src/pfr/pfrload.c,
|
||||||
|
|
|
@ -577,14 +577,15 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
subglyph = glyph->subs + org_count;
|
subglyph = glyph->subs + org_count;
|
||||||
x_pos = 0;
|
|
||||||
y_pos = 0;
|
|
||||||
|
|
||||||
for ( i = 0; i < count; i++, subglyph++ )
|
for ( i = 0; i < count; i++, subglyph++ )
|
||||||
{
|
{
|
||||||
FT_UInt format;
|
FT_UInt format;
|
||||||
|
|
||||||
|
|
||||||
|
x_pos = 0;
|
||||||
|
y_pos = 0;
|
||||||
|
|
||||||
PFR_CHECK( 1 );
|
PFR_CHECK( 1 );
|
||||||
format = PFR_NEXT_BYTE( p );
|
format = PFR_NEXT_BYTE( p );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue