sna: Fix compiler warnings due to DrawablePtr vs. PixmapPtr

Deal with xserver commit 8e3b26ceaa86 ("Make PixmapDirtyUpdateRec::src
a DrawablePtr")

Not sure this is still correct though. Is this stuff limited to
pixmaps anymore?

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
This commit is contained in:
Ville Syrjälä 2019-03-03 17:21:55 +02:00
parent bfeeae4de9
commit 581ddc5d2f
1 changed files with 19 additions and 1 deletions

View File

@ -17518,7 +17518,11 @@ static bool has_offload_slaves(struct sna *sna)
PixmapDirtyUpdatePtr dirty;
xorg_list_for_each_entry(dirty, &screen->pixmap_dirty_list, ent) {
#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC
assert(dirty->src == &sna->front->drawable);
#else
assert(dirty->src == sna->front);
#endif
if (RegionNotEmpty(DamageRegion(dirty->damage)))
return true;
}
@ -17679,7 +17683,11 @@ static void sna_accel_post_damage(struct sna *sna)
if (RegionNil(damage))
continue;
src = dirty->src;
#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC
assert(dirty->src->type == DRAWABLE_PIXMAP);
#endif
src = (PixmapPtr)dirty->src;
dst = dirty->slave_dst->master_pixmap;
region.extents.x1 = dirty->x;
@ -17930,9 +17938,15 @@ migrate_dirty_tracking(PixmapPtr old_front, PixmapPtr new_front)
PixmapDirtyUpdatePtr dirty, safe;
xorg_list_for_each_entry_safe(dirty, safe, &screen->pixmap_dirty_list, ent) {
#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC
assert(dirty->src == &old_front->drawable);
if (dirty->src != &old_front->drawable)
continue;
#else
assert(dirty->src == old_front);
if (dirty->src != old_front)
continue;
#endif
DamageUnregister(&dirty->src->drawable, dirty->damage);
DamageDestroy(dirty->damage);
@ -17947,7 +17961,11 @@ migrate_dirty_tracking(PixmapPtr old_front, PixmapPtr new_front)
}
DamageRegister(&new_front->drawable, dirty->damage);
#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC
dirty->src = &new_front->drawable;
#else
dirty->src = new_front;
#endif
}
#endif
}