forked from pool/xorg-x11-server
de140e0677
Copy from X11:XOrg/xorg-x11-server based on submit request 19080 from user sndirsch OBS-URL: https://build.opensuse.org/request/show/19080 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xorg-x11-server?expand=0&rev=138
31 lines
844 B
Diff
31 lines
844 B
Diff
Index: xorg-server-1.6.3.901/exa/exa_migration.c
|
|
===================================================================
|
|
--- xorg-server-1.6.3.901.orig/exa/exa_migration.c
|
|
+++ xorg-server-1.6.3.901/exa/exa_migration.c
|
|
@@ -463,7 +463,11 @@ exaMigrateTowardFb (ExaMigrationPtr migr
|
|
exaDoMoveInPixmap(migrate);
|
|
}
|
|
|
|
- ExaOffscreenMarkUsed (pPixmap);
|
|
+ if (exaPixmapIsOffscreen(pPixmap)) {
|
|
+ exaCopyDirtyToFb (migrate);
|
|
+ ExaOffscreenMarkUsed (pPixmap);
|
|
+ } else
|
|
+ exaCopyDirtyToSys (migrate);
|
|
}
|
|
|
|
/**
|
|
@@ -496,6 +500,12 @@ exaMigrateTowardSys (ExaMigrationPtr mig
|
|
|
|
if (pExaPixmap->score <= EXA_PIXMAP_SCORE_MOVE_OUT && pExaPixmap->area)
|
|
exaDoMoveOutPixmap(migrate);
|
|
+
|
|
+ if (exaPixmapIsOffscreen(pPixmap)) {
|
|
+ exaCopyDirtyToFb (migrate);
|
|
+ ExaOffscreenMarkUsed (pPixmap);
|
|
+ } else
|
|
+ exaCopyDirtyToSys (migrate);
|
|
}
|
|
|
|
/**
|