diff options
author | Eric Anholt <eric@anholt.net> | 2006-11-28 11:17:21 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2006-11-28 11:17:21 -0800 |
commit | e8fb40ab1063b18372be2b5996257eb69d3f15c4 (patch) | |
tree | 24de1ae53e0ea73497535f2413657bd92c61f4b4 /src/i830_display.h | |
parent | 72692ba2e0254460c4f5a8cd476f5748383390ae (diff) |
Replace custom DDC mode list code with a copy of the X Server's.
The X Server now has most of the mode helper functions we want, and we can
start removing compilation of our copies when the server is new enough.
Diffstat (limited to 'src/i830_display.h')
-rw-r--r-- | src/i830_display.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/i830_display.h b/src/i830_display.h index 361a3c67..322f635c 100644 --- a/src/i830_display.h +++ b/src/i830_display.h @@ -38,3 +38,11 @@ void i830DescribeOutputConfiguration(ScrnInfoPtr pScrn); int i830GetLoadDetectPipe(ScrnInfoPtr pScrn, I830OutputPtr output); void i830ReleaseLoadDetectPipe(ScrnInfoPtr pScrn, I830OutputPtr output); Bool i830PipeInUse(ScrnInfoPtr pScrn, int pipe); + +/** @{ + */ +DisplayModePtr i830xf86DDCGetModes(int scrnIndex, xf86MonPtr DDC); +DisplayModePtr i830xf86CVTMode(int HDisplay, int VDisplay, float VRefresh, + Bool Reduced, Bool Interlaced); +/** @} */ + |