Displaying 2 results from an estimated 2 matches for "dpy_resize_shared".
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...t idle;
uint64_t gui_timer_interval;
- int idle; /* there is nothing to update (window invisible), set by vnc/sdl */
- int shared_buf;
void (*dpy_update)(struct DisplayState *s, int x, int y, int w, int h);
- void (*dpy_resize)(struct DisplayState *s, int w, int h);
- void (*dpy_resize_shared)(struct DisplayState *s, int w, int h, int depth, int linesize, void *pixels);
- void (*dpy_setdata)(DisplayState *s, void *pixels);
+ void (*dpy_resize)(struct DisplayState *s);
+ void (*dpy_setdata)(struct DisplayState *s);
void (*dpy_refresh)(struct DisplayState *s);
void (*dp...
2008 Jun 06
0
[PATCH] ioemu: cleaning DisplayState->dpy_resize interface
Hi all,
I am attaching a patch that brings the DisplayState dpy_resize interface
back to how it is in qemu mainstream, thus making the code easier to merge.
In order to support sharing the framebuffer, I am adding a new resize
interface called dpy_resize_shared that also has a depth and a pixels
parameters. As a consequence I could remove the dpy_colourdepth callback
and make the code cleaner and easier to read.
Best Regards,
Stefano Stabellini
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
______________________________...