search for: ds_get_height

Displaying 2 results from an estimated 2 matches for "ds_get_height".

2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...i <stefano.stabellini@eu.citrix.com> --- diff --git a/console.c b/console.c --- a/console.c +++ b/console.c @@ -1000,20 +1000,16 @@ if (index >= MAX_CONSOLES) return; + active_console->g_width = ds_get_width(active_console->ds); + active_console->g_height = ds_get_height(active_console->ds); s = consoles[index]; if (s) { + DisplayState *ds = s->ds; active_console = s; - if (s->console_type == TEXT_CONSOLE) { - if (s->g_width != s->ds->width || - s->g_height != s->ds->height) { -...
2009 Mar 02
0
[PATCH 5 of 13] exploiting the new interface in vnc.c
...x, y, w, h); } @@ -385,13 +385,13 @@ exit(1); } - if (ds_get_bytes_per_pixel(ds) != vs->depth) + if (ds_get_bytes_per_pixel(ds) != vs->serverds.pf.bytes_per_pixel) console_color_init(ds); vnc_colordepth(ds); - size_changed = ds_get_width(ds) != vs->width || ds_get_height(ds) != vs->height; + size_changed = ds_get_width(ds) != vs->serverds.width || + ds_get_height(ds) != vs->serverds.height; + vs->serverds = *(ds->surface); if (vs->csock != -1 && vs->has_resize && size_changed) { - vs->width...