Summary: | [945GM XVideo] upscaling limited by factor of 7 | ||||||
---|---|---|---|---|---|---|---|
Product: | xorg | Reporter: | David Schleef <ds> | ||||
Component: | Driver/intel | Assignee: | Wang Zhenyu <zhenyu.z.wang> | ||||
Status: | RESOLVED FIXED | QA Contact: | Xorg Project Team <xorg-team> | ||||
Severity: | normal | ||||||
Priority: | medium | CC: | nanhai.zou | ||||
Version: | git | ||||||
Hardware: | Other | ||||||
OS: | All | ||||||
Whiteboard: | |||||||
i915 platform: | i915 features: | ||||||
Bug Depends on: | |||||||
Bug Blocks: | 16926 | ||||||
Attachments: |
|
Description
David Schleef
2008-08-24 13:35:52 UTC
Please provide more detailed info according to http://www.intellinuxgraphics.org/how_to_report_bug.html. Oh duh (i830_video.c): /* Clamp dst width & height to 7x of src (overlay limit) */ if(drw_w > (src_w * 7)) drw_w = src_w * 7; if(drw_h > (src_h * 7)) drw_h = src_h * 7; The condition I see in the documentation appears to be src_h/drw_h < 8, that is, src_h < 8*drw_h. It appears this was "fixed" incorrectly in e784e152. It seems difficult to believe that this limitation would exist at all for the texture unit. Created attachment 18486 [details] [review] patch Jesse thinks this might be right. Zhenyu/Nanhai, could you review and apply? yeah, we should only apply those check for overlay. Should the origin check also be kept to guard in that case? Patch is pushed, thanks. |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.