diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2008-10-06 15:11:56 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2008-10-06 15:11:56 -0400 |
commit | 5708624d1151877dd66a462d4a75fed6774604a7 (patch) | |
tree | b983acd2b9ca36b9cc067edba58353f3600d0a29 | |
parent | a5c5ce96279d01eb519bfb92b94c06a58acb7f07 (diff) |
Turn coherent mode off by default on DVI
-rw-r--r-- | src/radeon_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index 3416edfe..8c794fb3 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -1158,7 +1158,7 @@ radeon_create_resources(xf86OutputPtr output) "RRConfigureOutputProperty error, %d\n", err); } - data = 1; /* use coherent mode by default */ + data = 0; /* coherent mode off by default */ err = RRChangeOutputProperty(output->randr_output, coherent_mode_atom, XA_INTEGER, 32, PropModeReplace, 1, &data, |