diff options
author | Michel Dänzer <daenzer@vmware.com> | 2009-02-06 11:37:53 +0100 |
---|---|---|
committer | Michel Dänzer <daenzer@vmware.com> | 2009-02-06 11:37:53 +0100 |
commit | 3948b523893d3d44b6a088340c4252e969613769 (patch) | |
tree | 3ed2df4127bfa5e6f36ab1bb8b35cc2517106b72 | |
parent | 9a1d07ecb74b7c3267a6910af66ada917a525110 (diff) |
EXA: Guard empty pending region warning by DEBUG_MIGRATE.
It isn't very useful yet while the damage layer calls us for empty operations,
mostly confuses users.
-rw-r--r-- | exa/exa_migration.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/exa/exa_migration.c b/exa/exa_migration.c index 571650c83..4623eccdd 100644 --- a/exa/exa_migration.c +++ b/exa/exa_migration.c @@ -162,6 +162,7 @@ exaCopyDirty(ExaMigrationPtr migrate, RegionPtr pValidDst, RegionPtr pValidSrc, if (pExaScr->optimize_migration) { RegionPtr pending_damage = DamagePendingRegion(pExaPixmap->pDamage); +#if DEBUG_MIGRATE if (REGION_NIL(pending_damage)) { static Bool firsttime = TRUE; @@ -170,6 +171,7 @@ exaCopyDirty(ExaMigrationPtr migrate, RegionPtr pValidDst, RegionPtr pValidSrc, firsttime = FALSE; } } +#endif REGION_INTERSECT(pScreen, &CopyReg, &CopyReg, pending_damage); } |