Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Oct 2002 12:08:09 -0500
From:      Matthew Reimer <mreimer@vpop.net>
To:        current@freebsd.org
Subject:   Re: mozilla-devel problems
Message-ID:  <3DB828F9.5060502@vpop.net>
In-Reply-To: <lists.freebsd.current.20021024151022.GA72779@tara.freenix.org>
References:  <lists.freebsd.current.20021024151022.GA72779@tara.freenix.org>	<lists.freebsd.current.1035475426.368.7.camel@gyros.marcuscom.com> 	<3DB820CE.7020702@vpop.net> <1035478993.368.22.camel@gyros.marcuscom.com>

next in thread | previous in thread | raw e-mail | index | archive | help
Joe Marcus Clarke wrote:

> On Thu, 2002-10-24 at 12:33, Matthew Reimer wrote:
>
> >Do the other strange issues you saw look anything like this:
> >
> >	http://www.vpop.net/~mreimer/slant.png
> >
> >This is mozilla-devel on -stable with Western monospace font set to
> >Andale Mono. My fonts.conf is stock except for two directories I added.
>
>
> Yep, this is exactly what I saw.  Changing my fonts fixed this.
>
> Joe

I applied the patch and it did fix my problem. Joe, can you commit this 
to the freetype2 port?

Matt

http://www.xfree86.org/pipermail/fonts/2002-September/002161.html

--- freetype-2.1.2/src/base/ftoutln.c.transform Thu Jun 20 06:57:04 2002
+++ freetype-2.1.2/src/base/ftoutln.c   Tue Jul 23 14:26:11 2002
@@ -628,9 +628,9 @@
        return;

      xz = FT_MulFix( vector->x, matrix->xx ) +
-         FT_MulFix( vector->y, matrix->yx );
+         FT_MulFix( vector->y, matrix->xy );

-    yz = FT_MulFix( vector->x, matrix->xy ) +
+    yz = FT_MulFix( vector->x, matrix->yx ) +
           FT_MulFix( vector->y, matrix->yy );

      vector->x = xz;
--- freetype-2.1.2/src/truetype/ttgload.c.transform     Thu Jun 20 
06:57:04 2002
+++ freetype-2.1.2/src/truetype/ttgload.c       Tue Jul 23 14:26:11 2002
@@ -544,8 +544,8 @@
        else if ( subglyph->flags & WE_HAVE_A_2X2 )
        {
          xx = (FT_Fixed)FT_GET_SHORT() << 2;
-        xy = (FT_Fixed)FT_GET_SHORT() << 2;
          yx = (FT_Fixed)FT_GET_SHORT() << 2;
+        xy = (FT_Fixed)FT_GET_SHORT() << 2;
          yy = (FT_Fixed)FT_GET_SHORT() << 2;
        }



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3DB828F9.5060502>