* src/base/ftsynth.c (FT_GlyphSlot_Oblique): Fix shear angle.

The old value was far too large (more than 20°).  The new one
corresponds to 12°, quite common in typography.
This commit is contained in:
Werner Lemberg 2012-08-17 09:28:28 +02:00
parent 3d3ff4b2f9
commit 04affa270b
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2012-08-17 Werner Lemberg <wl@gnu.org>
* src/base/ftsynth.c (FT_GlyphSlot_Oblique): Fix shear angle.
The old value was far too large (more than 20°). The new one
corresponds to 12°, quite common in typography.
2012-08-12 Alexei Podtelezhnikov <apodtele@gmail.com>
Fix Savannah bug #37017.

View File

@ -63,7 +63,7 @@
transform.xx = 0x10000L;
transform.yx = 0x00000L;
transform.xy = 0x06000L;
transform.xy = 0x0366AL;
transform.yy = 0x10000L;
FT_Outline_Transform( outline, &transform );