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>
This commit is contained in:
Dave Airlie 2009-12-18 08:08:11 +10:00 committed by Anthony Liguori
parent b5cc6e32ba
commit 8095cb3ed2
1 changed files with 1 additions and 1 deletions

View 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))