diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-16 19:07:10 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-16 19:07:10 +0000 |
commit | e07d630ad249ca142edf3c0d7b1eb03d43b8002d (patch) | |
tree | 8ab5149e144cbac9f4d5a33f05bd905b72a973a9 /hw/vmware_vga.c | |
parent | 3023f3329d87a6203d03a0e9ccb948772940da96 (diff) | |
download | qemu-e07d630ad249ca142edf3c0d7b1eb03d43b8002d.tar.gz qemu-e07d630ad249ca142edf3c0d7b1eb03d43b8002d.tar.bz2 qemu-e07d630ad249ca142edf3c0d7b1eb03d43b8002d.zip |
fix screendump (Stefano Stabellini)
this patch fixes the screendump functionality that was recently broken;
it must be applied *after* PATCH 5, 6 and 7 of the original displaystate
change patch series.
In fact the other patches make much easier to solve the screendump
problem because they make the console switching mechanism more robust.
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6345 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/vmware_vga.c')
-rw-r--r-- | hw/vmware_vga.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c index 5b60074210..950a98c15e 100644 --- a/hw/vmware_vga.c +++ b/hw/vmware_vga.c @@ -975,7 +975,10 @@ static void vmsvga_screen_dump(void *opaque, const char *filename) } if (s->depth == 32) { - ppm_save(filename, s->vram, s->width, s->height, ds_get_linesize(s->ds)); + DisplaySurface *ds = qemu_create_displaysurface_from(s->width, + s->height, 32, ds_get_linesize(s->ds), s->vram); + ppm_save(filename, ds); + qemu_free(ds); } } |