diff options
author | 2002-06-24 23:13:31 +0000 | |
---|---|---|
committer | 2002-06-24 23:13:31 +0000 | |
commit | 5f3281372a91d20bd1a3ddbf195389cab5a66dc3 (patch) | |
tree | 584554a99f2f70269f030a14c8be9da2e53023bb /x11-base | |
parent | add support to disable mail and news (diff) | |
download | gentoo-2-5f3281372a91d20bd1a3ddbf195389cab5a66dc3.tar.gz gentoo-2-5f3281372a91d20bd1a3ddbf195389cab5a66dc3.tar.bz2 gentoo-2-5f3281372a91d20bd1a3ddbf195389cab5a66dc3.zip |
add xft-quality.diff to -r12 ... dont enable it though
Diffstat (limited to 'x11-base')
-rw-r--r-- | x11-base/xfree/files/4.2.0-r12/xft-quality.diff | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/x11-base/xfree/files/4.2.0-r12/xft-quality.diff b/x11-base/xfree/files/4.2.0-r12/xft-quality.diff new file mode 100644 index 000000000000..a9ed1fe5fdb5 --- /dev/null +++ b/x11-base/xfree/files/4.2.0-r12/xft-quality.diff @@ -0,0 +1,38 @@ +diff -urN Xft.orig/xftfreetype.c Xft/xftfreetype.c +--- Xft.orig/xftfreetype.c Thu Dec 13 10:26:00 2001 ++++ Xft/xftfreetype.c Wed Mar 6 00:23:19 2002 +@@ -1,5 +1,5 @@ + /* +- * $XFree86: xc/lib/Xft/xftfreetype.c,v 1.16 2001/12/13 17:26:00 keithp Exp $ ++ * $XFree86: xc/lib/Xft1/xftfreetype.c,v 1.1.1.1 2002/02/15 01:26:16 keithp Exp $ + * + * Copyright © 2000 Keith Packard, member of The XFree86 Project, Inc. + * +@@ -236,7 +236,7 @@ + if (_XftFontDebug() & XFT_DBG_GLYPH) + printf ("Set face size to %d (%d)\n", + (int) (size >> 6), (int) size); +- if (FT_Set_Char_Size (face, size, size, 0, 0)) ++ if (FT_Set_Char_Size (face, size, size, 69, 72)) + return False; + f->size = size; + } +diff -urN Xft.orig/xftglyphs.c Xft/xftglyphs.c +--- Xft.orig/xftglyphs.c Sat Nov 17 01:22:45 2001 ++++ Xft/xftglyphs.c Wed Mar 6 00:23:19 2002 +@@ -1,5 +1,5 @@ + /* +- * $XFree86: xc/lib/Xft/xftglyphs.c,v 1.14 2001/11/17 08:22:45 keithp Exp $ ++ * $XFree86: xc/lib/Xft1/xftglyphs.c,v 1.1.1.1 2002/02/15 01:26:16 keithp Exp $ + * + * Copyright © 2000 Keith Packard, member of The XFree86 Project, Inc. + * +@@ -124,7 +124,7 @@ + } + else + glyphindex = (FT_UInt) charcode; +- error = FT_Load_Glyph (font->face, glyphindex, FT_LOAD_NO_BITMAP); ++ error = FT_Load_Glyph (font->face, glyphindex, FT_LOAD_NO_BITMAP | FT_LOAD_NO_HINTING); + if (error) + continue; + |