summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2015-11-23 17:02:03 +0000
committerFabiano Fidêncio <fidencio@redhat.com>2015-11-25 14:54:13 +0100
commit3d0f4e3642aa5610e99a60ae92627bd7b0450b55 (patch)
tree933c3f9e065aff57301375e9065da83500ee9401 /server
parentb61bd286bc27bf791be52dfc74af628c5969318d (diff)
downloadspice-3d0f4e3642aa5610e99a60ae92627bd7b0450b55.tar.gz
spice-3d0f4e3642aa5610e99a60ae92627bd7b0450b55.tar.xz
spice-3d0f4e3642aa5610e99a60ae92627bd7b0450b55.zip
display: factor out draw_until
Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
Diffstat (limited to 'server')
-rw-r--r--server/display-channel.c58
1 files changed, 26 insertions, 32 deletions
diff --git a/server/display-channel.c b/server/display-channel.c
index d54f7256..d2ee5238 100644
--- a/server/display-channel.c
+++ b/server/display-channel.c
@@ -1282,6 +1282,29 @@ static void surface_update_dest(RedSurface *surface, const SpiceRect *area)
canvas->ops->read_bits(canvas, dest, -stride, area);
}
+static void draw_until(DisplayChannel *display, RedSurface *surface, Drawable *last)
+{
+ RingItem *ring_item;
+ Container *container;
+ Drawable *now;
+
+ do {
+ ring_item = ring_get_tail(&surface->current_list);
+ now = SPICE_CONTAINEROF(ring_item, Drawable, surface_list_link);
+ now->refs++;
+ container = now->tree_item.base.container;
+ current_remove_drawable(display, now);
+ container_cleanup(container);
+ /* drawable_draw may call display_channel_draw for the surfaces 'now' depends on. Notice,
+ that it is valid to call display_channel_draw in this case and not display_channel_draw_till:
+ It is impossible that there was newer item then 'last' in one of the surfaces
+ that display_channel_draw is called for, Otherwise, 'now' would have already been rendered.
+ See the call for red_handle_depends_on_target_surface in red_process_draw */
+ drawable_draw(display, now);
+ display_channel_drawable_unref(display, now);
+ } while (now != last);
+}
+
/*
* Renders drawables for updating the requested area, but only drawables that are older
* than 'last' (exclusive).
@@ -1345,23 +1368,8 @@ void display_channel_draw_till(DisplayChannel *display, const SpiceRect *area, i
return;
}
- do {
- Container *container;
+ draw_until(display, surface, surface_last);
- ring_item = ring_get_tail(&surface->current_list);
- now = SPICE_CONTAINEROF(ring_item, Drawable, surface_list_link);
- now->refs++;
- container = now->tree_item.base.container;
- current_remove_drawable(display, now);
- container_cleanup(container);
- /* drawable_draw may call display_channel_draw for the surfaces 'now' depends on. Notice,
- that it is valid to call display_channel_draw in this case and not display_channel_draw_till:
- It is impossible that there was newer item then 'last' in one of the surfaces
- that display_channel_draw is called for, Otherwise, 'now' would have already been rendered.
- See the call for red_handle_depends_on_target_surface in red_process_draw */
- drawable_draw(display, now);
- display_channel_drawable_unref(display, now);
- } while (now != surface_last);
surface_update_dest(surface, area);
}
@@ -1398,22 +1406,8 @@ void display_channel_draw(DisplayChannel *display, const SpiceRect *area, int su
}
region_destroy(&rgn);
- if (!last) {
- surface_update_dest(surface, area);
- return;
- }
-
- do {
- Container *container;
+ if (last)
+ draw_until(display, surface, last);
- ring_item = ring_get_tail(&surface->current_list);
- now = SPICE_CONTAINEROF(ring_item, Drawable, surface_list_link);
- now->refs++;
- container = now->tree_item.base.container;
- current_remove_drawable(display, now);
- container_cleanup(container);
- drawable_draw(display, now);
- display_channel_drawable_unref(display, now);
- } while (now != last);
surface_update_dest(surface, area);
}