diff options
author | marha <marha@users.sourceforge.net> | 2011-02-21 07:21:53 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-02-21 07:21:53 +0000 |
commit | 248adea786d4a5a9d2c71679722eda734d4e7be7 (patch) | |
tree | 4c3295a508b054e6cbe36169326c2eef0692d41c /xorg-server/exa | |
parent | 8a191c08ddda2e66fa26f148d6c21959bb08f923 (diff) | |
download | vcxsrv-248adea786d4a5a9d2c71679722eda734d4e7be7.tar.gz vcxsrv-248adea786d4a5a9d2c71679722eda734d4e7be7.tar.bz2 vcxsrv-248adea786d4a5a9d2c71679722eda734d4e7be7.zip |
xserver xkeyboard-config mesa git update 21 Feb 2011
Diffstat (limited to 'xorg-server/exa')
-rw-r--r-- | xorg-server/exa/exa_migration_mixed.c | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/xorg-server/exa/exa_migration_mixed.c b/xorg-server/exa/exa_migration_mixed.c index 4f49905d3..fb4715135 100644 --- a/xorg-server/exa/exa_migration_mixed.c +++ b/xorg-server/exa/exa_migration_mixed.c @@ -138,7 +138,6 @@ void exaDamageReport_mixed(DamagePtr pDamage, RegionPtr pRegion, void *closure) { PixmapPtr pPixmap = closure; - ScreenPtr pScreen = pPixmap->drawable.pScreen; ExaPixmapPriv(pPixmap); /* Move back results of software rendering on system memory copy of mixed driver @@ -150,18 +149,10 @@ exaDamageReport_mixed(DamagePtr pDamage, RegionPtr pRegion, void *closure) if (!pExaPixmap->use_gpu_copy && exaPixmapHasGpuCopy(pPixmap)) { ExaScreenPriv(pPixmap->drawable.pScreen); - /* Front buffer: Don't wait for the block handler to copy back the data. - * This avoids annoying latency if you encounter a lot of software rendering. - */ - if (pPixmap == pScreen->GetScreenPixmap(pScreen)) - exaMoveInPixmap_mixed(pPixmap); - else { - if (pExaScr->deferred_mixed_pixmap && - pExaScr->deferred_mixed_pixmap != pPixmap) - exaMoveInPixmap_mixed(pExaScr->deferred_mixed_pixmap); - - pExaScr->deferred_mixed_pixmap = pPixmap; - } + if (pExaScr->deferred_mixed_pixmap && + pExaScr->deferred_mixed_pixmap != pPixmap) + exaMoveInPixmap_mixed(pExaScr->deferred_mixed_pixmap); + pExaScr->deferred_mixed_pixmap = pPixmap; } } |