Displaying 4 results from an estimated 4 matches for "dpy_setdata".
2008 Jul 10
0
[PATCH] ioemu : sdl without OpenGl fix
Hi,
Here is a little patch for a bug introduced recently in the SDL ioemu
rendering, in case we disable OpenGl. Without this patch, the SDL window
just stoppped when there were a call to ds->dpy_setdata, because the
pointer was not set.
Kind regards,
Frédéric Guihéry
Signed-off-by: Frédéric Guihéry <fred@cat-lan.com>
diff -r 2d100fe81044 tools/ioemu/sdl.c
--- a/tools/ioemu/sdl.c Wed Jul 09 16:00:05 2008 +0100
+++ b/tools/ioemu/sdl.c Thu Jul 10 14:58:05 2008 +0200
@@ -777,6 +777,8 @@ void...
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...t 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 (*dpy_copy)(struct DisplayState *s, int src_x, int src_y,
int dst_x, int dst_y, int w...
2008 Mar 26
11
[PATCH 0/2] fbif: Add offset in resize event
Hello,
The following two patches add an additional offset part in the FB resize
event.
Samuel
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2008 Feb 29
35
[RFC] PVFB: Add refresh period to XenStore parameters?
Hello,
Sometimes the backend of PVFB knows that it doesn''t need permanent
refresh, when the window is minimized for instance (no refresh at all),
or the administration tools know that the window is thumnailed, and so a
slow refresh rate is fine. Also, some users may want to tune the
refresh rate according to the smoothness they would like, balanced with
the CPU time that requires.