summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@linux.ie>2009-12-18 08:08:11 +1000
committerAnthony Liguori <aliguori@us.ibm.com>2009-12-19 08:26:24 -0600
commite83421f511ccbc2c8af2d93833047e94429a80e4 (patch)
treeee23132fd84c196c667a584dc4bbf2b2d2ce1218
parent2b311b3cce0e30dc361a4f67948a8ccfe4db248d (diff)
downloadqemu-e83421f511ccbc2c8af2d93833047e94429a80e4.tar.gz
vmware: increase cursor buffer size.
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)
-rw-r--r--hw/vmware_vga.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c
index e3d5706139..7ab1c7910b 100644
--- a/hw/vmware_vga.c
+++ b/hw/vmware_vga.c
@@ -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))