this post was submitted on 07 Aug 2023
11 points (100.0% liked)

ELI5

3 readers
1 users here now

Explain it to me like I am 5. Everybody should know what this is about.

founded 1 year ago
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] HeartyBeast@kbin.social 0 points 1 year ago (1 children)

Looks like anti-aliasing - an attempt to make the text look smooth to your eyes by adding additional colours.

Can I ask what hardware/OS you are using? This almost looks like older sub-pixel rendering

[โ€“] grahamsz@kbin.social 7 points 1 year ago

This is definitely Sub-Pixel Rendering.

Anti-Aliasing is a different technique that's makes sharp edges look softer by adding more grays, but generally it'd not add other colors as you see here. We also don't generally apply AA to small text as we actually want it to look crisp.

Sub-Pixel Rendering exploits the fact that each pixel of a typical LCD is made up of three color in a horizontal row.

If you had a perfectly white screen and wanted to add one black dot, the simplest way is to turn off the RGB of a single pixel. However you could also get the same effect by turning off the GB of one pixel and the R of the next pixel. This allows you to move the dot by 1/3rd of a pixel. This is what get exploited to make text more legible.