diff options
Diffstat (limited to 'uxa')
-rw-r--r-- | uxa/uxa-render.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/uxa/uxa-render.c b/uxa/uxa-render.c index a9eb6072..8c163f6e 100644 --- a/uxa/uxa-render.c +++ b/uxa/uxa-render.c @@ -926,6 +926,11 @@ uxa_solid_rects (CARD8 op, return; } + /* XXX xserver-1.8: CompositeRects is not tracked by Damage, so we must + * manually append the damaged regions ourselves. + */ + DamageRegionAppend(dst->pDrawable, ®ion); + pixman_region_translate(®ion, dst_x, dst_y); boxes = pixman_region_rectangles(®ion, &num_boxes); extents = pixman_region_extents (®ion); |