]> git.proxmox.com Git - qemu.git/commitdiff
vmware: increase cursor buffer size.
authorDave Airlie <airlied@linux.ie>
Thu, 17 Dec 2009 22:08:11 +0000 (08:08 +1000)
committerAnthony Liguori <aliguori@us.ibm.com>
Sat, 19 Dec 2009 14:26:24 +0000 (08:26 -0600)
The cursor pixmap size we calculate later ends up being 4096 dwords
long by the looks of it. This boots an F12 LiveCD now.

Signed-off-by: Dave Airlie <airlied@linux.ie>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
(cherry picked from commit 8095cb3ed22d74649fd247efb9518459eae4d92e)

hw/vmware_vga.c

index e3d570613931ab5e8d66e6461bf92462b81b42ac..7ab1c7910b251ed82fb3c1b73ca7111d5a526055 100644 (file)
@@ -467,7 +467,7 @@ struct vmsvga_cursor_definition_s {
     int hot_x;
     int hot_y;
     uint32_t mask[1024];
-    uint32_t image[1024];
+    uint32_t image[4096];
 };
 
 #define SVGA_BITMAP_SIZE(w, h)         ((((w) + 31) >> 5) * (h))