diff options
author | Alexander Larsson <alexl@redhat.com> | 2010-06-30 14:05:04 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2010-06-30 22:35:17 +0200 |
commit | 99f581ae561599d6c2684b96775da4f56484c68a (patch) | |
tree | 7c314306d295f6628f2e4218f7fcefc3c5bdb5f7 /server | |
parent | 1be4d5d26cd6c27bdcd3e8e905da79437626148b (diff) | |
download | spice-99f581ae561599d6c2684b96775da4f56484c68a.tar.gz spice-99f581ae561599d6c2684b96775da4f56484c68a.tar.xz spice-99f581ae561599d6c2684b96775da4f56484c68a.zip |
Automatically marshall SpicePath
Diffstat (limited to 'server')
-rw-r--r-- | server/red_worker.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/server/red_worker.c b/server/red_worker.c index 6d821c96..6fd92a76 100644 --- a/server/red_worker.c +++ b/server/red_worker.c @@ -7998,7 +7998,6 @@ static void red_send_qxl_draw_stroke(RedWorker *worker, RedChannel *channel = &display_channel->base; SpiceStroke stroke; SpiceMarshaller *brush_pat_out; - SpiceMarshaller *path_out; SpiceMarshaller *style_out; fill_base(display_channel, item); @@ -8007,11 +8006,9 @@ static void red_send_qxl_draw_stroke(RedWorker *worker, stroke = drawable->u.stroke; spice_marshall_Stroke(channel->send_data.marshaller, &stroke, - &path_out, &style_out, &brush_pat_out); - spice_marshall_Path(path_out, stroke.path); fill_attr(display_channel, style_out, &stroke.attr, item->group_id); if (brush_pat_out) { fill_bits(display_channel, brush_pat_out, stroke.brush.u.pattern.pat, item, FALSE); |