From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NfKKI-0001uS-Mz for qemu-devel@nongnu.org; Wed, 10 Feb 2010 16:42:26 -0500 Received: from [199.232.76.173] (port=37841 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NfKKI-0001uF-9m for qemu-devel@nongnu.org; Wed, 10 Feb 2010 16:42:26 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NfKKH-0001yW-8C for qemu-devel@nongnu.org; Wed, 10 Feb 2010 16:42:26 -0500 Received: from mail-iw0-f194.google.com ([209.85.223.194]:60256) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NfKKG-0001uW-Os for qemu-devel@nongnu.org; Wed, 10 Feb 2010 16:42:24 -0500 Received: by mail-iw0-f194.google.com with SMTP id 32so907977iwn.14 for ; Wed, 10 Feb 2010 13:42:24 -0800 (PST) Message-ID: <4B73283B.7010300@codemonkey.ws> Date: Wed, 10 Feb 2010 15:42:19 -0600 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH 1/1] Increase VNC_MAX_WIDTH References: <201002081422.29418.iggy@theiggy.com> In-Reply-To: <201002081422.29418.iggy@theiggy.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Brian Jackson Cc: qemu-devel@nongnu.org On 02/08/2010 02:22 PM, Brian Jackson wrote: > Increase VNC_MAX_WIDTH to match "commonly available" consumer level monitors > available these days. > > This also closes KVM bug 2907597 > > Signed-off-by: Brian Jackson > Applied. Thanks. Regards, Anthony Liguori > --- > vnc.h | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/vnc.h b/vnc.h > index 1210824..1575af2 100644 > --- a/vnc.h > +++ b/vnc.h > @@ -68,7 +68,7 @@ typedef void VncSendHextileTile(VncState *vs, > void *last_fg, > int *has_bg, int *has_fg); > > -#define VNC_MAX_WIDTH 2048 > +#define VNC_MAX_WIDTH 2560 > #define VNC_MAX_HEIGHT 2048 > #define VNC_DIRTY_WORDS (VNC_MAX_WIDTH / (16 * 32)) > > > > >