mirror of https://gitee.com/openkylin/qemu.git
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:
parent
b5cc6e32ba
commit
8095cb3ed2
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue