diff options
author | Shuang He <shuang.he@intel.com> | 2008-10-06 09:48:21 +0800 |
---|---|---|
committer | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-10-06 09:48:21 +0800 |
commit | 21cce1998a10db520c390eb5061814867564c583 (patch) | |
tree | 8880f964f61120b47789ac5cf4de54dcc60cfd20 | |
parent | 76c9ece36e6400fd10f364ee330faea470e2da64 (diff) |
Fix a typo in G965 texture video code
-rw-r--r-- | src/i965_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i965_video.c b/src/i965_video.c index 4c79259b..78f69ee5 100644 --- a/src/i965_video.c +++ b/src/i965_video.c @@ -254,7 +254,7 @@ I965DisplayVideoTextured(ScrnInfoPtr pScrn, I830PortPrivPtr pPriv, int id, ps_kernel_static = &ps_kernel_planar_static[0][0]; ps_kernel_static_size = sizeof (ps_kernel_planar_static); src_width[1] = src_width[0] = width; - src_width[1] = src_height[0] = height; + src_height[1] = src_height[0] = height; src_pitch[1] = src_pitch[0] = video_pitch * 2; src_width[4] = src_width[5] = src_width[2] = src_width[3] = width / 2; src_height[4] = src_height[5] = src_height[2] = src_height[3] = height / 2; |