summaryrefslogtreecommitdiffstats
path: root/xorg/X11R7.6/rdp/rdpCopyPlane.c
diff options
context:
space:
mode:
authorJim Grandy <jgrandy@authentic8.com>2013-07-03 15:57:00 -0700
committerJim Grandy <jgrandy@authentic8.com>2013-08-22 12:52:24 -0700
commit45b0bc9f17f0788bdfe28c0ae687faa0bce9374f (patch)
treea2f2e71699615e2320cfb5ab0060ebde37cc3bc8 /xorg/X11R7.6/rdp/rdpCopyPlane.c
parent1ae9a7f2b685a8c2bf052e7c1724811346189fb9 (diff)
downloadxrdp-proprietary-45b0bc9f17f0788bdfe28c0ae687faa0bce9374f.tar.gz
xrdp-proprietary-45b0bc9f17f0788bdfe28c0ae687faa0bce9374f.zip
Hand-apply patches (glyph cache) from Authentic8 branch: 653869c 30f23d4 74b015d 4e51e6d 2829087
Diffstat (limited to 'xorg/X11R7.6/rdp/rdpCopyPlane.c')
-rw-r--r--xorg/X11R7.6/rdp/rdpCopyPlane.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xorg/X11R7.6/rdp/rdpCopyPlane.c b/xorg/X11R7.6/rdp/rdpCopyPlane.c
index aac03287..bc581789 100644
--- a/xorg/X11R7.6/rdp/rdpCopyPlane.c
+++ b/xorg/X11R7.6/rdp/rdpCopyPlane.c
@@ -168,7 +168,7 @@ rdpCopyPlane(DrawablePtr pSrc, DrawablePtr pDst,
box.x2 = box.x1 + w;
box.y2 = box.y1 + h;
RegionInit(&reg1, &box, 0);
- draw_item_add_img_region(pDirtyPriv, &reg1, GXcopy, dirty_type, 5);
+ draw_item_add_img_region(pDirtyPriv, &reg1, GXcopy, dirty_type, TAG_COPYPLANE);
RegionUninit(&reg1);
}
else if (got_id)
@@ -194,7 +194,7 @@ rdpCopyPlane(DrawablePtr pSrc, DrawablePtr pDst,
RegionInit(&reg2, NullBox, 0);
RegionCopy(&reg2, &clip_reg);
RegionIntersect(&reg1, &reg1, &reg2);
- draw_item_add_img_region(pDirtyPriv, &reg1, GXcopy, dirty_type, 5);
+ draw_item_add_img_region(pDirtyPriv, &reg1, GXcopy, dirty_type, TAG_COPYPLANE);
RegionUninit(&reg1);
RegionUninit(&reg2);
}