http://bugs.winehq.org/show_bug.cgi?id=10583
Summary: Fonts: Subpixel hinting, No RGB or BGR Product: Wine Version: 0.9.49. Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: trivial Priority: P2 Component: wine-x11driver AssignedTo: wine-bugs@winehq.org ReportedBy: lorefice2@libero.it
Created an attachment (id=9386) --> (http://bugs.winehq.org/attachment.cgi?id=9386) Screenshot showing kwrite and Notepad doing font antialiasing.
As you can see in the attached file, while wine does a good job in antialiasing and hinting fonts, subpixel rendering, using RGB (but i tested BGR too), is not present. I tried with ClientSideAntialiasWithCore=Y (ClientSideWithRender=N) and ClientSideAntialiasWithRended=Y (ClientSideWithRender=Y), disabled any library override, but it didn't help.
--------------------------------------------- Zool ~ # cat ~/.fonts.conf <?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <match target="font" > <edit mode="assign" name="rgba" > <const>rgb</const> </edit> </match> <match target="font" > <edit mode="assign" name="hinting" > <bool>true</bool> </edit> </match> <match target="font" > <edit mode="assign" name="hintstyle" > <const>hintfull</const> </edit> </match> <match target="font" > <edit mode="assign" name="antialias" > <bool>true</bool> </edit> </match> </fontconfig> --------------------------------------------- Zool ~ # xrdb -q|grep Xft Xft.antialias: 1 Xft.autohint: 0 Xft.dpi: 96.000000 Xft.hinting: 1 Xft.hintstyle: hintfull Xft.rgba: rgb