summaryrefslogtreecommitdiff
path: root/src/radeon_exa_render.c
diff options
context:
space:
mode:
authorAlex Deucher <alex@cube.(none)>2008-04-27 21:08:00 -0400
committerAlex Deucher <alex@cube.(none)>2008-04-27 21:08:00 -0400
commit211e0041c7fc2df494b77428553943a2b526ee4e (patch)
tree9d6a3a45755b3361930558b78fb395209c9895f4 /src/radeon_exa_render.c
parent656b06bdde129ca4fc370f5a2cf7311c9179b0ff (diff)
IGP: fix EXA composite corruption
Diffstat (limited to 'src/radeon_exa_render.c')
-rw-r--r--src/radeon_exa_render.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/radeon_exa_render.c b/src/radeon_exa_render.c
index 138216fc..ec3c06df 100644
--- a/src/radeon_exa_render.c
+++ b/src/radeon_exa_render.c
@@ -2108,8 +2108,12 @@ static void FUNC_NAME(RadeonDoneComposite)(PixmapPtr pDst)
ENTER_DRAW(0);
- if (IS_R500_3D) {
- /* r500 shows corruption on small things like glyphs without a 3D idle */
+ if (IS_R500_3D || ((info->ChipFamily == CHIP_FAMILY_RS400) ||
+ (info->ChipFamily == CHIP_FAMILY_RS690) ||
+ (info->ChipFamily == CHIP_FAMILY_RS740))) {
+ /* r500 shows corruption on small things like glyphs without a 3D idle
+ * IGP shows more substantial corruption
+ */
BEGIN_ACCEL(1);
OUT_ACCEL_REG(RADEON_WAIT_UNTIL, RADEON_WAIT_3D_IDLECLEAN);
FINISH_ACCEL();