From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=58077 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OFOwE-00024z-Gv for qemu-devel@nongnu.org; Fri, 21 May 2010 05:54:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OFOwC-0000L3-Ku for qemu-devel@nongnu.org; Fri, 21 May 2010 05:54:42 -0400 Received: from mx1.redhat.com ([209.132.183.28]:24164) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OFOwB-0000Ko-Up for qemu-devel@nongnu.org; Fri, 21 May 2010 05:54:40 -0400 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o4L9scKo024727 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 21 May 2010 05:54:39 -0400 From: Gerd Hoffmann Date: Fri, 21 May 2010 11:54:31 +0200 Message-Id: <1274435674-9027-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 0/3] cursor patches List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Respin of the cursor patches, now using xpm for the builtin pointers. cheers, Gerd Gerd Hoffmann (3): cursor: add cursor functions. use new cursor struct + functions for vmware vga and sdl. vnc: rich cursor support. Makefile.objs | 3 +- console.h | 24 ++++++- cursor.c | 210 +++++++++++++++++++++++++++++++++++++++++++++++++++ cursor_hidden.xpm | 37 +++++++++ cursor_left_ptr.xpm | 39 ++++++++++ hw/vmware_vga.c | 40 +++++++++- sdl.c | 52 +++---------- vnc.c | 70 +++++++++++++++-- vnc.h | 8 ++- vnchextile.h | 7 +- 10 files changed, 431 insertions(+), 59 deletions(-) create mode 100644 cursor.c create mode 100644 cursor_hidden.xpm create mode 100644 cursor_left_ptr.xpm