diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2012-08-15 15:40:17 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2012-08-15 15:40:17 -0700 |
commit | ea98b503caf78170d5a1a94557cb1a6d98821645 (patch) | |
tree | 4a42432cefd8b6adca7151b21f7a665c86d9f93b /xorg/X11R7.6/rdp/rdpPushPixels.c | |
parent | 68ef36cc0267dbb0515dd8d843c88807268577d7 (diff) | |
download | xrdp-proprietary-ea98b503caf78170d5a1a94557cb1a6d98821645.tar.gz xrdp-proprietary-ea98b503caf78170d5a1a94557cb1a6d98821645.zip |
xorg: work on dirty updates for bandwidth
Diffstat (limited to 'xorg/X11R7.6/rdp/rdpPushPixels.c')
-rw-r--r-- | xorg/X11R7.6/rdp/rdpPushPixels.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xorg/X11R7.6/rdp/rdpPushPixels.c b/xorg/X11R7.6/rdp/rdpPushPixels.c index f109a999..02f15fea 100644 --- a/xorg/X11R7.6/rdp/rdpPushPixels.c +++ b/xorg/X11R7.6/rdp/rdpPushPixels.c @@ -143,7 +143,7 @@ rdpPushPixels(GCPtr pGC, PixmapPtr pBitMap, DrawablePtr pDst, box.x2 = box.x1 + w; box.y2 = box.y1 + h; RegionInit(®1, &box, 0); - draw_item_add_img_region(pDirtyPriv, ®1, dirty_type); + draw_item_add_img_region(pDirtyPriv, ®1, GXcopy, dirty_type); RegionUninit(®1); } else if (got_id) @@ -167,7 +167,7 @@ rdpPushPixels(GCPtr pGC, PixmapPtr pBitMap, DrawablePtr pDst, if (dirty_type != 0) { RegionInit(®1, &box, 0); - draw_item_add_img_region(pDirtyPriv, &clip_reg, dirty_type); + draw_item_add_img_region(pDirtyPriv, &clip_reg, GXcopy, dirty_type); RegionUninit(®1); } else if (got_id) |