diff options
author | root <root@xhh-bl32.(none)> | 2007-06-26 16:32:30 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2007-07-19 17:28:35 +0800 |
commit | 4844254431695158287167e3b0fad25d9efb7a6c (patch) | |
tree | 8d65b8a07371cf6e0eaa607dcdbe011cd22e1658 /src/i915_hwmc.c | |
parent | 8c249765ce788f8adb0325a8e3016a0eae74b13b (diff) |
a fix for 945G/945GM
Diffstat (limited to 'src/i915_hwmc.c')
-rw-r--r-- | src/i915_hwmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i915_hwmc.c b/src/i915_hwmc.c index bc5b7286..0f57a5fb 100644 --- a/src/i915_hwmc.c +++ b/src/i915_hwmc.c @@ -380,7 +380,7 @@ static void i915_unmap_xvmc_buffers(ScrnInfoPtr pScrn, I915XvMCContextPriv *ctxp static Bool i915_allocate_xvmc_buffers(ScrnInfoPtr pScrn, I915XvMCContextPriv *ctxpriv) { I830Ptr pI830 = I830PTR(pScrn); - int flags = (IS_I915G(pI830) || IS_I915GM(pI830)) ? + int flags = (IS_I915G(pI830) || IS_I915GM(pI830) || IS_I945G(pI830) || IS_I945GM(pI830)) ? (ALIGN_BOTH_ENDS | NEED_PHYSICAL_ADDR) : ALIGN_BOTH_ENDS; if (!i830_allocate_xvmc_buffer(pScrn, "[XvMC]Static Indirect State", |