[Bug 22765] Fonts no longer anti-aliased

wine-bugs at winehq.org wine-bugs at winehq.org
Mon May 24 02:37:27 CDT 2010


http://bugs.winehq.org/show_bug.cgi?id=22765





--- Comment #15 from Igor Tarasov <tarasov.igor at gmail.com>  2010-05-24 02:37:26 ---
This bug is not invalid.

Try changing rgba value in your .fonts.conf from "rgb" to "none". This field
does not mean "no smoothing", but rather, "no subpixel smoothing". But wine
stops smoothing at all when rgba gets equal to none.

Confirmed on Xubuntu 10.04 with big CRT monitor. :)

Ha! Got the bug.
http://source.winehq.org/git/wine.git/?a=blob;f=dlls/winex11.drv/xrender.c;h=cc0b2b5086496aa6b69f0a5c5fec78f5f39ac3b2;hb=9479fbfd34cc8bd0f1154abe47befa5d4a645d9e#l954

Line 954:
                    case FC_RGBA_NONE: entry->aa_default = AA_None; break;

Should read:
                    case FC_RGBA_NONE: entry->aa_default = AA_Grey; break;

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list