diff options
| author | Jay Sorg <jay.sorg@gmail.com> | 2012-09-18 16:55:25 -0700 |
|---|---|---|
| committer | Jay Sorg <jay.sorg@gmail.com> | 2012-09-18 16:55:25 -0700 |
| commit | 6504737b11ae763f9aa06fa55856440b1c86ef44 (patch) | |
| tree | dd593cf0b5303d84b1c0aab4aeb0e118da437927 /xorg/X11R7.6/rdp/rdpImageText8.c | |
| parent | 3399b953ebd331c7d250e2be1e9a92fe4b48f7c3 (diff) | |
| download | xrdp-proprietary-6504737b11ae763f9aa06fa55856440b1c86ef44.tar.gz xrdp-proprietary-6504737b11ae763f9aa06fa55856440b1c86ef44.zip | |
xorg: work on screen dirty update, still off by defualt, fix for rail
Diffstat (limited to 'xorg/X11R7.6/rdp/rdpImageText8.c')
| -rw-r--r-- | xorg/X11R7.6/rdp/rdpImageText8.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/xorg/X11R7.6/rdp/rdpImageText8.c b/xorg/X11R7.6/rdp/rdpImageText8.c index ba958a21..2f34e12e 100644 --- a/xorg/X11R7.6/rdp/rdpImageText8.c +++ b/xorg/X11R7.6/rdp/rdpImageText8.c @@ -38,6 +38,8 @@ extern int g_Bpp; /* from rdpmain.c */ extern ScreenPtr g_pScreen; /* from rdpmain.c */ extern Bool g_wrapPixmap; /* from rdpmain.c */ extern int g_do_dirty_os; /* in rdpmain.c */ +extern int g_do_dirty_ons; /* in rdpmain.c */ +extern rdpPixmapRec g_screenPriv; /* in rdpmain.c */ extern GCOps g_rdpGCOps; /* from rdpdraw.c */ @@ -123,8 +125,18 @@ rdpImageText8(DrawablePtr pDrawable, GCPtr pGC, if (pDstWnd->viewable) { post_process = 1; - rdpup_get_screen_image_rect(&id); - got_id = 1; + if (g_do_dirty_ons) + { + LLOGLN(0, ("rdpImageText8: gettig dirty")); + g_screenPriv.is_dirty = 1; + pDirtyPriv = &g_screenPriv; + dirty_type = RDI_IMGLL; + } + else + { + rdpup_get_screen_image_rect(&id); + got_id = 1; + } } } } |
