From owner-freebsd-current Thu Oct 24 10: 7:53 2002 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 882EA37B401 for ; Thu, 24 Oct 2002 10:07:51 -0700 (PDT) Received: from boromir.vpop.net (dns1.vpop.net [207.178.248.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38CD943E4A for ; Thu, 24 Oct 2002 10:07:51 -0700 (PDT) (envelope-from mreimer@vpop.net) Received: from vpop.net (bilbo.vpop.net [65.103.33.41]) by boromir.vpop.net (Postfix) with ESMTP id 0CA8C3A5F08; Thu, 24 Oct 2002 10:07:49 -0700 (PDT) Message-ID: <3DB828F9.5060502@vpop.net> Date: Thu, 24 Oct 2002 12:08:09 -0500 From: Matthew Reimer Organization: VPOP Technologies, Inc. User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2b) Gecko/20021023 X-Accept-Language: en-us, en MIME-Version: 1.0 To: current@freebsd.org Subject: Re: mozilla-devel problems References: <3DB820CE.7020702@vpop.net> <1035478993.368.22.camel@gyros.marcuscom.com> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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