diff options
author | Martin-Éric Racine <q-funk@iki.fi> | 2008-02-10 01:50:26 +0200 |
---|---|---|
committer | Martin-Éric Racine <q-funk@iki.fi> | 2008-02-10 01:50:26 +0200 |
commit | ae448a3beafe001c2bbc60f9fa09ebcfb00e828f (patch) | |
tree | 0ae73d0b8cf7d4f6728dfe4c1b99ffdd516f8857 /src/amd_lx_driver.c | |
parent | 4670abb6036379245995f000dcb7d3e33f39570f (diff) |
Added trivial fix for Gamma initialization.
Diffstat (limited to 'src/amd_lx_driver.c')
-rw-r--r-- | src/amd_lx_driver.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/amd_lx_driver.c b/src/amd_lx_driver.c index 9abbd5f..34f220a 100644 --- a/src/amd_lx_driver.c +++ b/src/amd_lx_driver.c @@ -551,6 +551,18 @@ LXPreInit(ScrnInfoPtr pScrni, int flags) if (!xf86SetDefaultVisual(pScrni, -1)) return FALSE; + /* + * If the driver can do gamma correction, it should call xf86SetGamma() + * here. + */ + { + Gamma zeros = { 0.0, 0.0, 0.0 }; + + if (!xf86SetGamma(pScrn, zeros)) { + return FALSE; + } + } + pScrni->progClock = TRUE; xf86CollectOptions(pScrni, NULL); xf86ProcessOptions(pScrni->scrnIndex, pScrni->options, GeodeOptions); |