summaryrefslogtreecommitdiff
path: root/src/i830_exa.c
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 /src/i830_exa.c
parent44eacf2323454e26b535cc5a4f0789cb0ff0e7fb (diff)
downloadxorg-driver-xf86-video-intel-10712c7a781e50475ee7e8ccd5bfd2d820f863e2.tar.gz
EXA: i965 pixmap pitch align
This seems like a typo, which causes screen artifacts.
Diffstat (limited to 'src/i830_exa.c')
-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 {