Home
last modified time | relevance | path

Searched refs:dpy_update (Results 1 – 11 of 11) sorted by relevance

/external/qemu/
Dconsole.h172 void (*dpy_update)(struct DisplayState *s, int x, int y, int w, int h); member
199 void (*dpy_update)(void* opaque, int x, int y, int w, int h); member
284 static inline void dpy_update(DisplayState *s, int x, int y, int w, int h) in dpy_update() function
288 dcl->dpy_update(s, x, y, w, h); in dpy_update()
294 dul->dpy_update(dul->opaque, x, y, w, h); in dpy_update()
348 dcl->dpy_update(s, dst_x, dst_y, w, h); in dpy_copy()
Dcurses.c362 dcl->dpy_update = curses_update; in curses_display_init()
Dconsole.c688 dpy_update(s->ds, 0, 0, ds_get_width(s->ds), ds_get_height(s->ds)); in console_refresh()
1140 dpy_update(s->ds, s->update_x0, s->update_y0, in console_puts()
1265 dpy_update(s->ds, s->text_x[0], s->text_y[0], in text_console_update()
Dvnc-android.c2134 dcl->dpy_update = vnc_dpy_update; in vnc_display_init()
Dvnc.c2130 dcl->dpy_update = vnc_dpy_update; in vnc_display_init()
/external/qemu/docs/
DDISPLAY-STATE.TXT27 dpy_update: a rectangular portion of the surface has been updated.
41 registered for a given DisplayState. For example, dpy_update(ds,x,y,w,h)
42 will call the 'dpy_update' callback of all listeners for the display
78 them through dpy_update() to the listeners).
208 After that, it calls dpy_update() to send the update to all registered
211 - The listener's 'dpy_update' callback is called and receives a pointer
229 | 3/ ds.update() | 4/ dpy_update(ds,x,y,w,h)
246 | | 5/listener.dpy_update(ds,x,y,w,h)
248 | | | 6/listener.dpy_update(...)
/external/qemu/android/
Ddisplay-core.c64 dcl->dpy_update = coredisplay_update; in coredisplay_init()
Ddisplay.c97 dcl->dpy_update = android_display_update; in android_display_init()
Dmultitouch-screen.c445 dul->dpy_update = _mt_fb_update; in multitouch_init()
/external/qemu/android/protocol/
Dfb-updates-proxy.c270 dul->dpy_update = proxyFb_update; in proxyFb_create()
/external/qemu/hw/
Dgoldfish_fb.c541 dpy_update(s->ds, rect.xmin, rect.ymin, rect.xmax-rect.xmin, rect.ymax-rect.ymin); in goldfish_fb_update_display()