From: Eduardo Habkost Date: Mon, 25 May 2009 21:20:05 +0000 (-0300) Subject: Fix vga_screen_dump_blank() PPM generation X-Git-Tag: TizenStudio_2.0_p2.3~8637 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b64803a90e0b6be8fb724322b7163399b7641e68;p=sdk%2Femulator%2Fqemu.git Fix vga_screen_dump_blank() PPM generation vga_screen_dump_blank() was not generating a valid PPM file: the width of the image made no sense (why it was multiplied by sizeof(uint32_t)?), and there was only one sample per pixel, instead of three. Signed-off-by: Eduardo Habkost Signed-off-by: Anthony Liguori --- diff --git a/hw/vga.c b/hw/vga.c index 97bf1b6..134ad16 100644 --- a/hw/vga.c +++ b/hw/vga.c @@ -2584,8 +2584,9 @@ static void vga_screen_dump_blank(VGAState *s, const char *filename) { FILE *f; unsigned int y, x, w, h; + unsigned char blank_sample[3] = { 0, 0, 0 }; - w = s->last_scr_width * sizeof(uint32_t); + w = s->last_scr_width; h = s->last_scr_height; f = fopen(filename, "wb"); @@ -2594,7 +2595,7 @@ static void vga_screen_dump_blank(VGAState *s, const char *filename) fprintf(f, "P6\n%d %d\n%d\n", w, h, 255); for (y = 0; y < h; y++) { for (x = 0; x < w; x++) { - fputc(0, f); + fwrite(blank_sample, 3, 1, f); } } fclose(f);