From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KYjj4-0005Ho-E0 for qemu-devel@nongnu.org; Thu, 28 Aug 2008 11:47:58 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KYjj1-0005HH-RD for qemu-devel@nongnu.org; Thu, 28 Aug 2008 11:47:57 -0400 Received: from [199.232.76.173] (port=47088 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KYjj1-0005HE-OU for qemu-devel@nongnu.org; Thu, 28 Aug 2008 11:47:55 -0400 Received: from smtp.eu.citrix.com ([62.200.22.115]:30905) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KYjj1-0004EX-Kk for qemu-devel@nongnu.org; Thu, 28 Aug 2008 11:47:55 -0400 Message-ID: <48B6C8FB.9090106@eu.citrix.com> Date: Thu, 28 Aug 2008 16:49:15 +0100 From: Stefano Stabellini MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 0 of 3] vnc and vga improvements Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hi all, This is a three patch series coming from xen-unstable to improve vnc and vga performances. The first patch implements dynamic colour depth changes in vnc.c: this way the vnc server can change its own internal colour depth at run time to follow any guest resolution change. The second patch implements the WMVi vnc extension in the qemu vnc server, so that we can also notify a vnc client when we change internal colour depth and offload any possible colour conversion to the client. The third patch implements sharing of the display pixel buffer between vnc.c and vga.c, in order to save a lot of memcpy's. The idea is that vnc.c (and in the near future sdl.c too) strictly follows the guest display resolution and notifies the client of any change. As a consequence we can save two colour conversions: one between vga and vnc, another one between the vnc server and the vnc client. For the moment this is all, but I'll start working on the sdl shared buffer in the next days. Cheers, Stefano Stabellini