diff options
author | Connor Behan <connor.behan@gmail.com> | 2014-04-28 21:26:44 -0700 |
---|---|---|
committer | Connor Behan <connor.behan@gmail.com> | 2014-04-28 21:26:44 -0700 |
commit | 4efc87f41d770c753ddf7f54fe334b6dbd7daf79 (patch) | |
tree | 7bbd84ab54130e69d2ef1cdafe7e2ca7e1050a60 /src/r128_driver.c | |
parent | 5ef5812a7a272aa08543cfd9b633f33c35e34dbd (diff) |
Fix ScreenInit with noAccel
Now that EXA is on by default, we must remember to turn it off again if
acceleration is disabled.
Signed-off-by: Connor Behan <connor.behan@gmail.com>
Diffstat (limited to 'src/r128_driver.c')
-rw-r--r-- | src/r128_driver.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/r128_driver.c b/src/r128_driver.c index 0a0b82b..f425c3b 100644 --- a/src/r128_driver.c +++ b/src/r128_driver.c @@ -2314,6 +2314,7 @@ Bool R128ScreenInit(SCREEN_INIT_ARGS_DECL) miSetPixmapDepths (); noAccel = xf86ReturnOptValBool(info->Options, OPTION_NOACCEL, FALSE); + if (noAccel) info->useEXA = FALSE; #ifdef R128DRI /* Setup DRI after visuals have been |