search for: last_height

Displaying 1 result from an estimated 1 matches for "last_height".

2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...ize(ds); } QEMUMachine palmte_machine = { diff --git a/hw/vga.c b/hw/vga.c --- a/hw/vga.c +++ b/hw/vga.c @@ -1270,18 +1270,19 @@ return; } - s->last_scr_width = width * cw; - s->last_scr_height = height * cheight; if (width != s->last_width || height != s->last_height || cw != s->last_cw || cheight != s->last_ch || s->last_depth) { - dpy_resize(s->ds, s->last_scr_width, s->last_scr_height); + s->last_scr_width = width * cw; + s->last_scr_height = height * cheight; + qemu_console_resize(s->console, s...