diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2008-12-05 11:18:15 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2008-12-05 11:18:15 -0500 |
commit | 7593d5399cdb2f42ecbcb5193580385b286a9db9 (patch) | |
tree | 8cf6c7a597845f8072d8bca1cd19073ac817f612 | |
parent | ad2579f8898251105a6b36b745afd1ce1dab103e (diff) |
set coherent mode consistently (enabled for now)
It's set to enabled in the output setup, but then was set to
disabled when teh output properties were setup. Set it up
consistently.
-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 41cbd6de..e77abaf2 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -1187,7 +1187,7 @@ radeon_create_resources(xf86OutputPtr output) "RRConfigureOutputProperty error, %d\n", err); } - data = 0; /* coherent mode off by default */ + data = 1; /* coherent mode on by default */ err = RRChangeOutputProperty(output->randr_output, coherent_mode_atom, XA_INTEGER, 32, PropModeReplace, 1, &data, |