diff options
author | Keith Packard <keithp@neko.keithp.com> | 2007-01-15 08:05:32 +1100 |
---|---|---|
committer | Keith Packard <keithp@neko.keithp.com> | 2007-01-15 08:05:32 +1100 |
commit | bfeda3bfc59d309772398f688d29452ba97f3973 (patch) | |
tree | d1ee5f4430098d64f413b991ee54b35a6a34558d /src/i830_modes.c | |
parent | da6a00f787e4d13e6b75768c1976f1c44ae5bf72 (diff) |
Convert I830PipeSetMode to xf86CrtcSetMode. Add rotation structures.
Makes the mode setting logic device independent.
Magic rename hooks allow multiple drivers to provide the
generic code without name conflicts.
Rotation code requires special pixmap creation hook, and uses
Render to perform the actual rotation.
Diffstat (limited to 'src/i830_modes.c')
-rw-r--r-- | src/i830_modes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/i830_modes.c b/src/i830_modes.c index b4e22c35..405dcc61 100644 --- a/src/i830_modes.c +++ b/src/i830_modes.c @@ -62,9 +62,9 @@ i830_ddc_get_modes (xf86OutputPtr output) xf86MonPtr edid_mon; DisplayModePtr modes; - edid_mon = i830_xf86OutputGetEDID (output, intel_output->pDDCBus); - i830_xf86OutputSetEDID (output, edid_mon); + edid_mon = xf86OutputGetEDID (output, intel_output->pDDCBus); + xf86OutputSetEDID (output, edid_mon); - modes = i830_xf86OutputGetEDIDModes (output); + modes = xf86OutputGetEDIDModes (output); return modes; } |