* src/base/ftoutln.c (FT_Vector_Transform): Fix serious typo

(xy <-> yx).
* src/truetype/ttgload.c (load_truetype_glyph): Replace `|' with
`||' to make code easier to read.
This commit is contained in:
Werner Lemberg 2002-06-20 10:57:04 +00:00
parent 5d52c90501
commit 7395da84dd
3 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2002-06-19 Werner Lemberg <wl@gnu.org>
* src/base/ftoutln.c (FT_Vector_Transform): Fix serious typo
(xy <-> yx).
* src/truetype/ttgload.c (load_truetype_glyph): Replace `|' with
`||' to make code easier to read.
2002-06-18 Roberto Alameda <ojancano@geekmail.de>.
* src/type42/t42objs.c (t42_check_size_change): Removed.
@ -24,7 +31,7 @@
2002-06-16 Leonard Rosenthol <leonardr@lazerware.com>
Updated Win32/VC++ projects to include the new PFR driver
Updated Win32/VC++ projects to include the new PFR driver.
* builds\win32\visualc\freetype.dsp: Updated.

View File

@ -628,9 +628,9 @@
return;
xz = FT_MulFix( vector->x, matrix->xx ) +
FT_MulFix( vector->y, matrix->xy );
FT_MulFix( vector->y, matrix->yx );
yz = FT_MulFix( vector->x, matrix->yx ) +
yz = FT_MulFix( vector->x, matrix->xy ) +
FT_MulFix( vector->y, matrix->yy );
vector->x = xz;

View File

@ -1066,7 +1066,7 @@
}
}
if ( x | y )
if ( x || y )
{
translate_array( num_new_points,
gloader->base.outline.points + num_base_points,