summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWang Zhenyu <zhenyu.z.wang@intel.com>2007-02-08 08:56:42 +0800
committerWang Zhenyu <zhenyu.z.wang@intel.com>2007-02-08 08:56:42 +0800
commit10712c7a781e50475ee7e8ccd5bfd2d820f863e2 (patch)
tree5b3c26f20b762df751d14dcdf62d4c75d284e9d4
parent44eacf2323454e26b535cc5a4f0789cb0ff0e7fb (diff)
EXA: i965 pixmap pitch align
This seems like a typo, which causes screen artifacts.
-rw-r--r--src/i830_exa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_exa.c b/src/i830_exa.c
index 97b4a98e..c3a4c401 100644
--- a/src/i830_exa.c
+++ b/src/i830_exa.c
@@ -374,7 +374,7 @@ I830EXAInit(ScreenPtr pScreen)
*/
if (IS_I965G(pI830)) {
pI830->EXADriverPtr->pixmapOffsetAlign = 4 * 2;
- pI830->EXADriverPtr->pixmapPitchAlign = 1;
+ pI830->EXADriverPtr->pixmapPitchAlign = 16;
pI830->EXADriverPtr->maxX = 8192;
pI830->EXADriverPtr->maxY = 8192;
} else {