All of lore.kernel.org
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 1/5] vnc: factor out vnc_desktop_resize()
Date: Tue, 01 Jun 2010 13:33:42 -0500	[thread overview]
Message-ID: <4C055286.9080207@codemonkey.ws> (raw)
In-Reply-To: <1274804720-518-2-git-send-email-kraxel@redhat.com>

On 05/25/2010 11:25 AM, Gerd Hoffmann wrote:
> Signed-off-by: Gerd Hoffmann<kraxel@redhat.com>
>    

Applied all.  Thanks.

Regards,

Anthony Liguori

> ---
>   vnc.c |   24 ++++++++++++++++--------
>   1 files changed, 16 insertions(+), 8 deletions(-)
>
> diff --git a/vnc.c b/vnc.c
> index 11ae3e5..aaebe24 100644
> --- a/vnc.c
> +++ b/vnc.c
> @@ -514,6 +514,21 @@ void buffer_append(Buffer *buffer, const void *data, size_t len)
>       buffer->offset += len;
>   }
>
> +static void vnc_desktop_resize(VncState *vs)
> +{
> +    DisplayState *ds = vs->ds;
> +
> +    if (vs->csock == -1 || !vnc_has_feature(vs, VNC_FEATURE_RESIZE)) {
> +        return;
> +    }
> +    vnc_write_u8(vs, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE);
> +    vnc_write_u8(vs, 0);
> +    vnc_write_u16(vs, 1); /* number of rects */
> +    vnc_framebuffer_update(vs, 0, 0, ds_get_width(ds), ds_get_height(ds),
> +                           VNC_ENCODING_DESKTOPRESIZE);
> +    vnc_flush(vs);
> +}
> +
>   static void vnc_dpy_resize(DisplayState *ds)
>   {
>       int size_changed;
> @@ -542,14 +557,7 @@ static void vnc_dpy_resize(DisplayState *ds)
>       QTAILQ_FOREACH(vs,&vd->clients, next) {
>           vnc_colordepth(vs);
>           if (size_changed) {
> -            if (vs->csock != -1&&  vnc_has_feature(vs, VNC_FEATURE_RESIZE)) {
> -                vnc_write_u8(vs, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE);
> -                vnc_write_u8(vs, 0);
> -                vnc_write_u16(vs, 1); /* number of rects */
> -                vnc_framebuffer_update(vs, 0, 0, ds_get_width(ds), ds_get_height(ds),
> -                        VNC_ENCODING_DESKTOPRESIZE);
> -                vnc_flush(vs);
> -            }
> +            vnc_desktop_resize(vs);
>           }
>           if (vs->vd->cursor) {
>               vnc_cursor_define(vs);
>    

  reply	other threads:[~2010-06-01 18:48 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-25 16:25 [Qemu-devel] [PATCH 0/5] vnc: desktop size patches Gerd Hoffmann
2010-05-25 16:25 ` [Qemu-devel] [PATCH 1/5] vnc: factor out vnc_desktop_resize() Gerd Hoffmann
2010-06-01 18:33   ` Anthony Liguori [this message]
2010-05-25 16:25 ` [Qemu-devel] [PATCH 2/5] vnc: send desktopresize event as reply to set encodings Gerd Hoffmann
2010-05-25 16:41   ` Corentin Chary
2010-05-25 16:25 ` [Qemu-devel] [PATCH 3/5] vnc: keep track of client desktop size Gerd Hoffmann
2010-05-25 16:25 ` [Qemu-devel] [PATCH 4/5] vnc: don't send invalid screen updates Gerd Hoffmann
2010-05-25 16:25 ` [Qemu-devel] [PATCH 5/5] vnc: move size-changed check into the vnc_desktop_resize function Gerd Hoffmann
2010-05-26  8:38 ` [Qemu-devel] [PATCH 0/5] vnc: desktop size patches Daniel P. Berrange

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4C055286.9080207@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --cc=kraxel@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.