|
|
|
|
|
by jws
2905 days ago
|
|
It depends on your hardware. If your RGB are in a different spatial order from the originator it actually makes it worse. Consider the 3 and 4th images, the "on light" AA and non-AA versions… Look at line number 10, the "let arr1 =…" line. Look at the vertical stroke of the "l" of "let". In the anti aliased version there is a red glow on the left side and a blue-green glow on the right when you zoom in. On the non anti-aliased one there is not such glow. Now lets lay that into pixels on a scanline… RGBRGBR_________GBRGBRGB subpixel AA
RGBRGB_________RGBRGBRGB non-subpixel AA
So both are just a black gap in an interwise solid line of GBRGBRG dots (I'm hiding the 'rgb' deliberately there, it doesn't exist in the real world on the LCDs where AA works)If we turn that back into what the computer abstracts as pixels we get… RGB RGB R__ ___ ___ _GB RGB RGB subpixel AA (see R and GB? halos)
RGB RGB ___ ___ ___ RGB RGB RGB non-subpixel AA
On 150dpi desktop displays it doesn't matter, your eyes aren't good enough. On displays which can be rotated it is a bad idea because the sub pixel AA hack only works in one orientation and that is just confusing. |
|
Where I notice it the most is on the curly quotes and parentheses. Without AA they look... harsh I guess? Or maybe blocky. You notice the vertical lines making up the curves more. You also lose some of the definition around letters - for example without AA the dot on the "i" is much less noticeable.
On the dark theme it doesn't look nearly as bad, I have a really hard time seeing the difference there at all. Maybe that's because they're scaled differently? Or maybe dark themes just don't need it as much?