mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-01-04 09:56:26 +00:00
worker: move delta computation
Move delta computation from red_add_drawable to red_current_add_with_shadow. Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
This commit is contained in:
parent
e603e96837
commit
f1c7bca4d4
@ -2951,15 +2951,20 @@ static inline Shadow *__new_shadow(RedWorker *worker, Drawable *item, SpicePoint
|
||||
return shadow;
|
||||
}
|
||||
|
||||
static inline int red_current_add_with_shadow(RedWorker *worker, Ring *ring, Drawable *item,
|
||||
SpicePoint *delta)
|
||||
static inline int red_current_add_with_shadow(RedWorker *worker, Ring *ring, Drawable *item)
|
||||
{
|
||||
#ifdef RED_WORKER_STAT
|
||||
stat_time_t start_time = stat_now(worker);
|
||||
++worker->add_with_shadow_count;
|
||||
#endif
|
||||
|
||||
Shadow *shadow = __new_shadow(worker, item, delta);
|
||||
RedDrawable *red_drawable = item->red_drawable;
|
||||
SpicePoint delta = {
|
||||
.x = red_drawable->u.copy_bits.src_pos.x - red_drawable->bbox.left,
|
||||
.y = red_drawable->u.copy_bits.src_pos.y - red_drawable->bbox.top
|
||||
};
|
||||
|
||||
Shadow *shadow = __new_shadow(worker, item, &delta);
|
||||
if (!shadow) {
|
||||
stat_add(&worker->add_stat, start_time);
|
||||
return FALSE;
|
||||
@ -3067,11 +3072,7 @@ static int red_add_drawable(RedWorker *worker, Drawable *drawable)
|
||||
Ring *ring = &worker->surfaces[surface_id].current;
|
||||
|
||||
if (has_shadow(red_drawable)) {
|
||||
SpicePoint delta = {
|
||||
.x = red_drawable->u.copy_bits.src_pos.x - red_drawable->bbox.left,
|
||||
.y = red_drawable->u.copy_bits.src_pos.y - red_drawable->bbox.top
|
||||
};
|
||||
ret = red_current_add_with_shadow(worker, ring, drawable, &delta);
|
||||
ret = red_current_add_with_shadow(worker, ring, drawable);
|
||||
} else {
|
||||
red_update_streamable(worker, drawable, red_drawable);
|
||||
ret = red_current_add(worker, ring, drawable);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user