freetype-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Devel] Fix for FontMatrix xy swaps


From: Werner LEMBERG
Subject: Re: [Devel] Fix for FontMatrix xy swaps
Date: Sat, 14 Jun 2003 07:26:44 +0200 (CEST)

> > > All FontMatrix parsing routines had xy and yx swapped since old
> > > FT_Vector_Transform() did swap it back...
> > 
> > Actually, FT_Vector_Transform wasn't buggy at all, which is why
> > I'm not going to commit your fix to the CVS.  I have fixed the
> > TrueType composite loader instead and reset the transformation
> > routine to its correct state...
> 
> Fine, since this will keep FreeType compatible to existing
> applications.  Then there is only this fix to apply to the docs:
>
>      //</font>
>      matrix.xx = 0x10000;
> -    matrix.xy = 0;
> -    matrix.yx = 0.12 * 0x10000;
> +    matrix.xy = 0.12 * 0x10000;
> +    matrix.yx = 0;
>      matrix.yy = 0x10000;

Applied, thanks.


    Werner



reply via email to

[Prev in Thread] Current Thread [Next in Thread]