this post was submitted on 11 May 2024
139 points (97.9% liked)

Linux

45501 readers
1617 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 22 points 1 month ago* (last edited 1 month ago) (3 children)

From the article...

On Wayland, KWin can now be configured to pull color profile information from the monitor’s EDID metadata where present. Note that color profile information in EDID metadata is often wrong, so use this setting with caution.

Can anyone speak towards why the EDID metadata is often wrong?

Edit: TY to all who responded.

~Anti~ ~Commercial-AI~ ~license~ ~(CC~ ~BY-NC-SA~ ~4.0)~

[–] [email protected] 12 points 1 month ago* (last edited 1 month ago)

Most displays provide settings to modify the colors of your screen; mine has like 10 different "picture modes" that strongly modify gamma curves, colors and the whitepoint. The EDID only describes colors of one of them, so if you change display settings, the data no longer applies.

More generally, the information isn't used by Windows or other popular video sources by default, so manufacturers don't have much of an incentive to put correct information in there. If it doesn't make a difference for the user, why would they care? Some displays even go so far as to intentionally report wrong physical size information, to make Windows select the default scale the manufacturer wants to have on that display (or at least that's what I think is the case with my cheap AliExpress portable monitor)...

That's not to say that the information is actually often completely wrong or unusable, but if one in tenthousand displays gets really messed up colors because we toggle this setting on by default, it's not worth it. We might add some heuristics for detecting at least usable color information and change this decision at some point though

[–] [email protected] 11 points 1 month ago

I don’t know about color profile data, but I can vouch for the EDID potentially being totally wrong sometimes on even basic data like physical size or even logical size (number of pixels).

As for the why, I don’t know, but following Occam’s razor I would guess that it’s cheaper when you just don’t care and leave it as somebody else’s problem.

[–] [email protected] 7 points 1 month ago

A few reasons:

  • Any conversion (including internally at the display) can result in colorspace mismatches.
  • If the sink has an unsupported mode, the source will send a default - which is usually a mismatch.

I wouldn't call it often wrong, personally. I'd say some devices are really bad with EDIDs, and are consistently problematic. It's more like -recent hardware is generally pretty good, but relying entirely on EDID won't always work, so use with care.

Some great examples of problematic devices/situations (in general):

  • Apple. Pretty much anything they make.
  • DP to HDMI - while DP supports HDMI natively, that can be one of the situations where EDID issues crop up. But much less often than....
  • DVI to HDMI or vice versa - this is probably the most problematic of general use. Happens somewhat often where a different or default colorspace gets used.

If you've got a single PC going to a display (or several), just set it once manually and you're good to go. If you're plugging and unplugging often with multiple devices (like with a dock), an EDID minder can be handy, but come with a price that generally makes setting it manually preferred anyway.

Hope this helps answer for you