From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L5OPt-0002iB-2G for qemu-devel@nongnu.org; Wed, 26 Nov 2008 12:43:09 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L5OPr-0002fy-Bj for qemu-devel@nongnu.org; Wed, 26 Nov 2008 12:43:08 -0500 Received: from [199.232.76.173] (port=41294 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L5OPr-0002fj-1X for qemu-devel@nongnu.org; Wed, 26 Nov 2008 12:43:07 -0500 Received: from smtp.eu.citrix.com ([62.200.22.115]:48204) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L5OPq-0000ez-Lc for qemu-devel@nongnu.org; Wed, 26 Nov 2008 12:43:06 -0500 Message-ID: <492D8B94.4000805@eu.citrix.com> Date: Wed, 26 Nov 2008 17:47:00 +0000 From: Stefano Stabellini MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 0 of 7] [UPDATE] DisplayState interface change 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 the third update of the "DisplayState interface change" series. The series is now of made of 7 patches: 1) accessors again some other substitutions in hw/sm501.c; 2) remove bgr the new DisplayState interface does not contain any host specific display detail, it is an abstraction of the backend display, hence we don't need to memorize the bgr flag in DisplayState. The frontend must be able to handle a bgr display by itself, in fact sdl is perfectly capable of that; 3) DisplayState interface change this is the big patch that actually changes the interface; 4) vnc improvements this patch introduces DisplaySurfaces in vnc, simplifying the code. 5) graphical_console_init change this is the patch that changes the graphical_console_init function to return an allocated DisplayState instead of a QEMUConsole, as Anthony suggested. This patch does *not* include any required changes to any devices, these changes come with the two following patches. 6) machine changes this patch changes the QEMUMachine init functions of all the machine types not to take a DisplayState as an argument because is not needed any more; 7) graphic device changes this patch updates the graphic device code to use the new graphical_console_init function. Patch number 5 requires also 6 and 7 to compile. More comments on single patches. Cheers, Stefano