forked from minhngoc25a/freetype2
[truetype] Fix Savannah bug #35646.
* src/truetype/ttinterp.c (Ins_MIRP): Typo, present since ages. The code is now in sync with the other operators (e.g. MSIRP) which modify twilight points.
This commit is contained in:
parent
cee5d59358
commit
a33c013fe2
14
ChangeLog
14
ChangeLog
|
@ -1,4 +1,12 @@
|
|||
2012-02-29 Werner Lemberg <wl@gnu.org>
|
||||
2012-03-01 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[truetype] Fix Savannah bug #35646.
|
||||
|
||||
* src/truetype/ttinterp.c (Ins_MIRP): Typo, present since ages. The
|
||||
code is now in sync with the other operators (e.g. MSIRP) which
|
||||
modify twilight points.
|
||||
|
||||
2012-03-01 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[bdf] Fix Savannah bug #35643.
|
||||
|
||||
|
@ -6,7 +14,7 @@
|
|||
comment before `_bdf_list_split', this is, really allocate at least
|
||||
five `field' elements.
|
||||
|
||||
2012-02-29 Werner Lemberg <wl@gnu.org>
|
||||
2012-03-01 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[bdf] Fix Savannah bug #35641.
|
||||
|
||||
|
@ -14,7 +22,7 @@
|
|||
_BDF_ENCODING isn't set. We need this because access to the `glyph'
|
||||
variable might be undefined otherwise.
|
||||
|
||||
2012-02-29 Werner Lemberg <wl@gnu.org>
|
||||
2012-03-01 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[truetype] Fix Savannah bug #35640.
|
||||
|
||||
|
|
|
@ -6264,7 +6264,7 @@
|
|||
CUR.zp1.org[point].y = CUR.zp0.org[CUR.GS.rp0].y +
|
||||
TT_MulFix14( (FT_UInt32)cvt_dist,
|
||||
CUR.GS.freeVector.y );
|
||||
CUR.zp1.cur[point] = CUR.zp0.cur[point];
|
||||
CUR.zp1.cur[point] = CUR.zp1.org[point];
|
||||
}
|
||||
|
||||
org_dist = CUR_Func_dualproj( &CUR.zp1.org[point],
|
||||
|
|
Loading…
Reference in New Issue