projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b5cc6e3
)
vmware: increase cursor buffer size.
author
Dave Airlie
<airlied@linux.ie>
Thu, 17 Dec 2009 22:08:11 +0000
(08:08 +1000)
committer
Anthony Liguori
<aliguori@us.ibm.com>
Fri, 18 Dec 2009 17:26:33 +0000
(11: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>
hw/vmware_vga.c
patch
|
blob
|
history
diff --git
a/hw/vmware_vga.c
b/hw/vmware_vga.c
index e3d570613931ab5e8d66e6461bf92462b81b42ac..7ab1c7910b251ed82fb3c1b73ca7111d5a526055 100644
(file)
--- 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))