diff options
author | Zhenyu Wang <zhenyuw@linux.intel.com> | 2010-09-30 10:58:49 +0800 |
---|---|---|
committer | Zhenyu Wang <zhenyuw@linux.intel.com> | 2010-09-30 11:02:22 +0800 |
commit | 345c963e443ec325f1ff530512a356ddb318ff70 (patch) | |
tree | e90d1cabae15955d1eaf73436206682e0f34eb05 /src/intel_driver.c | |
parent | d4c013cb9d92d2959c9a98eca20e43ab14ae22e3 (diff) |
Always use tiling on Sandybridge
Sandybridge requires kind of buffer must be tiling, like depth.
And we would or have all tiling cases handled fine. So not allow
user to turn off tiling on Sandybridge+ may be fine.
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Diffstat (limited to 'src/intel_driver.c')
-rw-r--r-- | src/intel_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel_driver.c b/src/intel_driver.c index d086d941..79c850b5 100644 --- a/src/intel_driver.c +++ b/src/intel_driver.c @@ -601,7 +601,7 @@ static Bool I830PreInit(ScrnInfoPtr scrn, int flags) intel->tiling = TRUE; /* Allow user override if they set a value */ - if (xf86IsOptionSet(intel->Options, OPTION_TILING)) { + if (!ALWAYS_TILING(intel) && xf86IsOptionSet(intel->Options, OPTION_TILING)) { if (xf86ReturnOptValBool(intel->Options, OPTION_TILING, FALSE)) intel->tiling = TRUE; else |