Searched refs:DisplaySurface (Results 1 – 6 of 6) sorted by relevance
/external/qemu/include/ui/ |
D | console.h | 137 struct DisplaySurface { struct 205 DisplaySurface* (*create_displaysurface)(int width, int height); 206 DisplaySurface* (*resize_displaysurface)(DisplaySurface *surface, int width, int height); 207 void (*free_displaysurface)(DisplaySurface *surface); 211 struct DisplaySurface *surface; 230 DisplaySurface* qemu_create_displaysurface_from(int width, int height, int bpp, 232 void qemu_alloc_display(DisplaySurface *surface, int width, int height, 239 static inline DisplaySurface* qemu_create_displaysurface(DisplayState *ds, int width, int height) in qemu_create_displaysurface() 244 static inline DisplaySurface* qemu_resize_displaysurface(DisplayState *ds, int width, int height) in qemu_resize_displaysurface() 254 static inline int is_surface_bgr(DisplaySurface *surface) in is_surface_bgr() [all …]
|
/external/qemu/include/qemu/ |
D | typedefs.h | 37 typedef struct DisplaySurface DisplaySurface; typedef
|
/external/qemu/ui/ |
D | console.c | 1319 static DisplaySurface* defaultallocator_create_displaysurface(int width, int height) in defaultallocator_create_displaysurface() 1321 DisplaySurface *surface = (DisplaySurface*) g_malloc0(sizeof(DisplaySurface)); in defaultallocator_create_displaysurface() 1329 static DisplaySurface* defaultallocator_resize_displaysurface(DisplaySurface *surface, in defaultallocator_resize_displaysurface() 1338 void qemu_alloc_display(DisplaySurface *surface, int width, int height, in qemu_alloc_display() 1359 DisplaySurface* qemu_create_displaysurface_from(int width, int height, int bpp, in qemu_create_displaysurface_from() 1362 DisplaySurface *surface = (DisplaySurface*) g_malloc0(sizeof(DisplaySurface)); in qemu_create_displaysurface_from() 1376 static void defaultallocator_free_displaysurface(DisplaySurface *surface) in defaultallocator_free_displaysurface() 1423 DisplaySurface *surf; in register_displayallocator() 1810 DisplaySurface* surface; in android_display_reset() 1816 surface = (DisplaySurface*) g_malloc0(sizeof(DisplaySurface)); in android_display_reset()
|
D | vnc.h | 110 DisplaySurface *ds; 150 DisplaySurface clientds;
|
/external/qemu/docs/ |
D | DISPLAY-STATE.TXT | 12 - A DisplayState owns a 'DisplaySurface' which is nothing more than a 56 needs to write directly to the DisplaySurface pixel buffer. A typical 125 DisplaySurface through a SDL_Window. The implementation also supports 129 display the DisplaySurface remotely through the RDP protocol. 165 object returned by this function has a default DisplaySurface of 640x480 pixels 171 corresponding DisplaySurface with another one with proper dimensions, and
|
/external/qemu/android/ |
D | multitouch-screen.c | 333 const DisplaySurface* const surface = mts_state->ds->surface; in _mt_fb_update()
|