Home | History | Annotate | Download | only in qemu

Lines Matching full:width

99     int width;
125 DisplaySurface* (*create_displaysurface)(int width, int height);
126 DisplaySurface* (*resize_displaysurface)(DisplaySurface *surface, int width, int height);
139 void (*cursor_define)(int width, int height, int bpp, int hot_x, int hot_y,
147 DisplaySurface* qemu_create_displaysurface_from(int width, int height, int bpp,
154 DisplaySurface* defaultallocator_create_displaysurface(int width, int height);
155 DisplaySurface* defaultallocator_resize_displaysurface(DisplaySurface *surface, int width, int height);
158 static inline DisplaySurface* qemu_create_displaysurface(DisplayState *ds, int width, int height)
160 return ds->allocator->create_displaysurface(width, height);
163 static inline DisplaySurface* qemu_resize_displaysurface(DisplayState *ds, int width, int height)
165 return ds->allocator->resize_displaysurface(ds->surface, width, height);
269 return ds->surface->width;
315 void qemu_console_resize(DisplayState *ds, int width, int height);