diff options
author | Csillag Kristof <csillag.kristof@united-consult.hu> | 2009-10-04 18:18:56 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-10-04 23:48:14 -0400 |
commit | f8471512ea9f1d38140dfe98a0f832e9f935f51b (patch) | |
tree | 36350b8ab5bffb4caf15c1f632c716784c734d56 /src/radeon_probe.h | |
parent | 60d9685abddccec17c1a9a5ec48cbe9c92543e0f (diff) |
radeon: add support for Custom EDID
Allows you to specify an edid per output from a file
to override what is detected by DDC. Useful for
problematic monitors or KVM switches that block
DDC. Specifying an EDID that is not compatible with
your monitor could damage your monitor so use with
caution.
agd5f: cache the custom edid at startup so we don't
have to read it from file every time the output is
queried.
Diffstat (limited to 'src/radeon_probe.h')
-rw-r--r-- | src/radeon_probe.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/radeon_probe.h b/src/radeon_probe.h index 9b2cd704..0ae3a87b 100644 --- a/src/radeon_probe.h +++ b/src/radeon_probe.h @@ -261,6 +261,9 @@ typedef struct _RADEONOutputPrivateRec { I2CBusPtr pI2CBus; RADEONI2CBusRec ddc_i2c; Bool shared_ddc; + + Bool custom_edid; + xf86MonPtr custom_mon; // router info // HDP info |