Displaying 5 results from an estimated 5 matches for "shared_buf".
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...t QEMUTimer *gui_timer;
+ int linesize; /* bytes per line */
+ uint8_t *data;
+
+ struct PixelFormat pf;
+};
+
+struct DisplayChangeListener {
+ int 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...
2008 Mar 04
0
[PATCH] ioemu: Slown down refresh interval when SDL is minimized
...-r c6cd384a48bf tools/ioemu/vl.h
--- a/tools/ioemu/vl.h Tue Mar 04 12:32:31 2008 +0000
+++ b/tools/ioemu/vl.h Tue Mar 04 15:34:25 2008 +0000
@@ -935,6 +935,7 @@ struct DisplayState {
int width;
int height;
void *opaque;
+ uint64_t gui_timer_interval;
int switchbpp;
int shared_buf;
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2009 Mar 02
0
[PATCH 3 of 13] remove bgr
...case 32:
- if (!ds->bgr) {
+ if (!bgr) {
tex_format = GL_BGRA;
tex_type = GL_UNSIGNED_BYTE;
} else {
@@ -275,9 +276,9 @@ static void sdl_resize_shared(DisplayState *ds, int w, int h, int depth, int lin
if (!ds->shared_buf) {
ds->depth = screen->format->BitsPerPixel;
if (screen->format->Bshift > screen->format->Rshift) {
- ds->bgr = 1;
+ bgr = 1;
} else {
- ds->bgr = 0;
+ bgr = 0;
}
shared = NULL;...
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.
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