in the shortlog: "Implements" -> "Implement" Or maybe something like: "stream-channel: Initialize blank display on client connection" Acked-by: Jonathon Jongsma <jjongsma@xxxxxxxxxx> On Wed, 2017-08-23 at 10:14 +0100, Frediano Ziglio wrote: > Send proper messages to client to see the display. > Currently a blank display will be showed to the clients > connecting. > > Signed-off-by: Frediano Ziglio <fziglio@xxxxxxxxxx> > --- > server/stream-channel.c | 52 > +++++++++++++++++++++++++++++++++++++++++++++++-- > 1 file changed, 50 insertions(+), 2 deletions(-) > > diff --git a/server/stream-channel.c b/server/stream-channel.c > index e2a6e564..c57f7e89 100644 > --- a/server/stream-channel.c > +++ b/server/stream-channel.c > @@ -19,6 +19,8 @@ > #include <config.h> > #endif > > +#include <common/generated_server_marshallers.h> > + > #include "red-channel-client.h" > #include "stream-channel.h" > #include "reds.h" > @@ -64,6 +66,13 @@ struct StreamChannelClass { > > G_DEFINE_TYPE(StreamChannel, stream_channel, RED_TYPE_CHANNEL) > > +enum { > + RED_PIPE_ITEM_TYPE_SURFACE_CREATE = > RED_PIPE_ITEM_TYPE_COMMON_LAST, > + RED_PIPE_ITEM_TYPE_FILL_SURFACE, > +}; > + > +#define PRIMARY_SURFACE_ID 0 > + > static void > stream_channel_client_class_init(StreamChannelClientClass *klass) > { > @@ -98,9 +107,46 @@ stream_channel_client_new(StreamChannel *channel, > RedClient *client, RedsStream > } > > static void > +fill_base(SpiceMarshaller *m) > +{ > + SpiceMsgDisplayBase base; > + > + base.surface_id = PRIMARY_SURFACE_ID; > + base.box = (SpiceRect) { 0, 0, 1024, 768 }; > + base.clip = (SpiceClip) { SPICE_CLIP_TYPE_NONE, NULL }; > + > + spice_marshall_DisplayBase(m, &base); > +} > + > +static void > stream_channel_send_item(RedChannelClient *rcc, RedPipeItem > *pipe_item) > { > + SpiceMarshaller *m = red_channel_client_get_marshaller(rcc); > + > switch (pipe_item->type) { > + case RED_PIPE_ITEM_TYPE_SURFACE_CREATE: { > + red_channel_client_init_send_data(rcc, > SPICE_MSG_DISPLAY_SURFACE_CREATE); > + SpiceMsgSurfaceCreate surface_create = { > + PRIMARY_SURFACE_ID, > + 1024, 768, > + SPICE_SURFACE_FMT_32_xRGB, SPICE_SURFACE_FLAGS_PRIMARY > + }; > + spice_marshall_msg_display_surface_create(m, > &surface_create); > + break; > + } > + case RED_PIPE_ITEM_TYPE_FILL_SURFACE: { > + red_channel_client_init_send_data(rcc, > SPICE_MSG_DISPLAY_DRAW_FILL); > + > + fill_base(m); > + > + SpiceFill fill; > + fill.brush = (SpiceBrush) { SPICE_BRUSH_TYPE_SOLID, { .color > = 0 } }; > + fill.rop_descriptor = SPICE_ROPD_OP_PUT; > + fill.mask = (SpiceQMask) { 0, { 0, 0 }, NULL }; > + SpiceMarshaller *brush_pat_out, *mask_bitmap_out; > + spice_marshall_Fill(m, &fill, &brush_pat_out, > &mask_bitmap_out); > + break; > + } > default: > spice_error("invalid pipe item type"); > } > @@ -164,8 +210,10 @@ stream_channel_connect(RedChannel *red_channel, > RedClient *red_client, RedsStreastuff > // "emulate" dcc_start > // TODO only if "surface" > red_channel_client_pipe_add_empty_msg(rcc, > SPICE_MSG_DISPLAY_INVAL_ALL_PALETTES); > - // TODO red_surface_create_item_new > - // TODO surface data ?? > + // TODO pass proper data > + red_channel_client_pipe_add_type(rcc, > RED_PIPE_ITEM_TYPE_SURFACE_CREATE); > + // surface data > + red_channel_client_pipe_add_type(rcc, > RED_PIPE_ITEM_TYPE_FILL_SURFACE); > // TODO monitor configs ?? > red_channel_client_pipe_add_empty_msg(rcc, > SPICE_MSG_DISPLAY_MARK); > } _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/spice-devel