diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-09-07 11:51:16 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2010-09-07 11:51:16 -0400 |
commit | b90cb61ccb0f4f80e0627141f223354a9371d47d (patch) | |
tree | a85c4fc8d44caa4b9cd3257cb5018b5afb42cc9b /src/radeon_output.c | |
parent | 2b98ec1f7e931019a4ab699a56d5dfaa395946fb (diff) |
radeon: set interlaced and doublescan enabled for randr outputs
interlaced used to work without setting these parameters. Changes
in the xserver seem to require them now.
Should fix:
https://bugs.freedesktop.org/show_bug.cgi?id=29591
Diffstat (limited to 'src/radeon_output.c')
-rw-r--r-- | src/radeon_output.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index 121be75b..283d32f4 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -3083,6 +3083,8 @@ Bool RADEONSetupConnectors(ScrnInfoPtr pScrn) if (!output) { return FALSE; } + output->interlaceAllowed = TRUE; + output->doubleScanAllowed = TRUE; output->driver_private = radeon_output; if (IS_DCE4_VARIANT) { output->possible_crtcs = 0x3f; |