sna: Handle incremental uploads from PutImage

PutImage rarely uploads the entire image inside a single request,
instead breaking up into scanline segments to fit within the protocol
limits. A few optimisations are based on detecting when we can discard
the GPU bo for an all-dirty CPU pixmap, which are useful in this case so
check for an entirely dirty pixmap following an incremental PutImage.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson 2011-11-12 11:49:32 +00:00
parent ed68f1b00a
commit 0269ec5533
1 changed files with 9 additions and 2 deletions

View File

@ -1381,9 +1381,16 @@ sna_put_zpixmap_blt(DrawablePtr drawable, GCPtr gc, RegionPtr region,
assert_pixmap_contains_box(pixmap, RegionExtents(region));
sna_damage_subtract(&priv->gpu_damage, region);
sna_damage_add(&priv->cpu_damage, region);
if (priv->flush)
list_move(&priv->list, &sna->dirty_pixmaps);
if (sna_damage_is_all(&priv->cpu_damage,
pixmap->drawable.width,
pixmap->drawable.height)) {
sna_damage_destroy(&priv->gpu_damage);
if (priv->gpu_bo && !priv->pinned)
sna_pixmap_destroy_gpu_bo(sna, priv);
}
}
if (priv->flush)
list_move(&priv->list, &sna->dirty_pixmaps);
get_drawable_deltas(drawable, pixmap, &dx, &dy);
x += dx + drawable->x;