From patchwork Mon Feb 8 20:22:29 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Jackson X-Patchwork-Id: 44857 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3CE32B7C8E for ; Tue, 9 Feb 2010 07:26:41 +1100 (EST) Received: from localhost ([127.0.0.1]:46315 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NeaBq-0007x8-FR for incoming@patchwork.ozlabs.org; Mon, 08 Feb 2010 15:26:38 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nea88-00072X-8z for qemu-devel@nongnu.org; Mon, 08 Feb 2010 15:22:48 -0500 Received: from [199.232.76.173] (port=56787 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nea87-000723-24 for qemu-devel@nongnu.org; Mon, 08 Feb 2010 15:22:47 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Nea84-0008IF-Br for qemu-devel@nongnu.org; Mon, 08 Feb 2010 15:22:46 -0500 Received: from mx20.gnu.org ([199.232.41.8]:6037) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Nea83-0008H7-Pi for qemu-devel@nongnu.org; Mon, 08 Feb 2010 15:22:44 -0500 Received: from theiggy.com ([66.220.1.110] helo=mail.theiggy.com) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Nea81-0007UK-IK for qemu-devel@nongnu.org; Mon, 08 Feb 2010 15:22:41 -0500 Received: from brianj-linux.localnet (wg.pivot3.com [74.202.66.30]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.theiggy.com (Postfix) with ESMTPSA id 207B3E0A4 for ; Mon, 8 Feb 2010 14:22:39 -0600 (CST) From: Brian Jackson To: qemu-devel@nongnu.org Date: Mon, 8 Feb 2010 14:22:29 -0600 User-Agent: KMail/1.13.0 (Linux/2.6.32-11-generic; KDE/4.3.95; i686; ; ) MIME-Version: 1.0 Message-Id: <201002081422.29418.iggy@theiggy.com> X-detected-operating-system: by mx20.gnu.org: GNU/Linux 2.6 (newer, 2) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Subject: [Qemu-devel] [PATCH 1/1] Increase VNC_MAX_WIDTH X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 --- 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))