Fix coordinate transformations in sfnt.c
* src/sfnt.c (sfnt_transform_coordinates): (sfnt_transform_f26dot6): Fix calculation of transformed coordinates in the very rare case of arbitrary transformation matrices.
This commit is contained in:
parent
1a38936299
commit
b6c2f36069
1 changed files with 8 additions and 4 deletions
12
src/sfnt.c
12
src/sfnt.c
|
@ -2578,8 +2578,10 @@ sfnt_transform_coordinates (struct sfnt_compound_glyph_component *component,
|
|||
|
||||
for (i = 0; i < num_coordinates; ++i)
|
||||
{
|
||||
x[i] = m1 * x[i] + m2 * y[i] + m3 * 1;
|
||||
y[i] = m4 * x[i] + m5 * y[i] + m6 * 1;
|
||||
sfnt_fixed xi = m1 * x[i] + m2 * y[i] + m3 * 1;
|
||||
sfnt_fixed yi = m4 * x[i] + m5 * y[i] + m6 * 1;
|
||||
x[i] = xi;
|
||||
y[i] = yi;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -12822,8 +12824,10 @@ sfnt_transform_f26dot6 (struct sfnt_compound_glyph_component *component,
|
|||
|
||||
for (i = 0; i < num_coordinates; ++i)
|
||||
{
|
||||
x[i] = m1 * x[i] + m2 * y[i] + m3 * 1;
|
||||
y[i] = m4 * x[i] + m5 * y[i] + m6 * 1;
|
||||
sfnt_f26dot6 xi = m1 * x[i] + m2 * y[i] + m3 * 1;
|
||||
sfnt_f26dot6 yi = m4 * x[i] + m5 * y[i] + m6 * 1;
|
||||
x[i] = xi;
|
||||
y[i] = yi;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue