mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-08 06:13:08 +00:00
Always believe the monitor when it reports a reduced-blanking mode.
CVT reduced blanking modes are typically only seen on digital connections to LCDs, but there are some monitors that report them as supported over the VGA connector too, which is perfectly legitimate, electrically speaking.
This commit is contained in:
@@ -832,7 +832,7 @@ xf86CheckModeForMonitor(DisplayModePtr mode, MonPtr monitor)
|
||||
((mode->HSyncEnd - mode->HDisplay) == 80) &&
|
||||
((mode->HSyncEnd - mode->HSyncStart) == 32) &&
|
||||
((mode->VSyncStart - mode->VDisplay) == 3)) {
|
||||
if (!monitor->reducedblanking)
|
||||
if (!monitor->reducedblanking && !(mode->type & M_T_DRIVER))
|
||||
return MODE_NO_REDUCED;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user