/qemu/include/ui/ |
H A D | pixman-minimal.h | 93 typedef struct pixman_image pixman_image_t; typedef 95 typedef void (*pixman_image_destroy_func_t)(pixman_image_t *image, void *data); 155 static inline pixman_image_t *pixman_image_create_bits(pixman_format_code_t format, in pixman_image_create_bits() 161 pixman_image_t *i = g_new0(pixman_image_t, 1); in pixman_image_create_bits() 182 static inline pixman_image_t *pixman_image_ref(pixman_image_t *i) in pixman_image_ref() 188 static inline bool pixman_image_unref(pixman_image_t *i) in pixman_image_unref() 205 static inline void pixman_image_set_destroy_function(pixman_image_t *i, in pixman_image_set_destroy_function() 214 static inline uint32_t *pixman_image_get_data(pixman_image_t *i) in pixman_image_get_data() 219 static inline int pixman_image_get_height(pixman_image_t *i) in pixman_image_get_height() 224 static inline int pixman_image_get_width(pixman_image_t *i) in pixman_image_get_width() [all …]
|
H A D | qemu-pixman.h | 84 pixman_image_t *qemu_pixman_linebuf_create(pixman_format_code_t format, 86 void qemu_pixman_linebuf_fill(pixman_image_t *linebuf, pixman_image_t *fb, 88 pixman_image_t *qemu_pixman_mirror_create(pixman_format_code_t format, 89 pixman_image_t *image); 91 pixman_image_t *qemu_pixman_glyph_from_vgafont(int height, const uint8_t *font, 93 void qemu_pixman_glyph_render(pixman_image_t *glyph, 94 pixman_image_t *surface, 100 void qemu_pixman_image_unref(pixman_image_t *image); 115 pixman_image_t **image, 124 G_DEFINE_AUTOPTR_CLEANUP_FUNC(pixman_image_t, qemu_pixman_image_unref)
|
H A D | surface.h | 19 pixman_image_t *image; 35 DisplaySurface *qemu_create_displaysurface_pixman(pixman_image_t *image);
|
H A D | spice-display.h | 93 pixman_image_t *surface; 94 pixman_image_t *mirror;
|
H A D | gtk.h | 42 pixman_image_t *convert;
|
/qemu/ui/ |
H A D | qemu-pixman.c | 194 pixman_image_t *qemu_pixman_linebuf_create(pixman_format_code_t format, in qemu_pixman_linebuf_create() 197 pixman_image_t *image = pixman_image_create_bits(format, width, 1, NULL, 0); in qemu_pixman_linebuf_create() 203 void qemu_pixman_linebuf_fill(pixman_image_t *linebuf, pixman_image_t *fb, in qemu_pixman_linebuf_fill() 210 pixman_image_t *qemu_pixman_mirror_create(pixman_format_code_t format, in qemu_pixman_mirror_create() 211 pixman_image_t *image) in qemu_pixman_mirror_create() 221 void qemu_pixman_image_unref(pixman_image_t *image) in qemu_pixman_image_unref() 230 pixman_image_t *qemu_pixman_glyph_from_vgafont(int height, const uint8_t *font, in qemu_pixman_glyph_from_vgafont() 233 pixman_image_t *glyph; in qemu_pixman_glyph_from_vgafont() 252 void qemu_pixman_glyph_render(pixman_image_t *glyph, in qemu_pixman_glyph_render() 253 pixman_image_t *surface, in qemu_pixman_glyph_render() [all …]
|
H A D | ui-qmp-cmds.c | 229 static bool png_save(int fd, pixman_image_t *image, Error **errp) in png_save() 235 g_autoptr(pixman_image_t) linebuf = in png_save() 291 static bool png_save(int fd, pixman_image_t *image, Error **errp) in png_save() 299 static bool ppm_save(int fd, pixman_image_t *image, Error **errp) in ppm_save() 305 g_autoptr(pixman_image_t) linebuf = NULL; in ppm_save() 335 g_autoptr(pixman_image_t) image = NULL; in qmp_screendump()
|
H A D | vnc.h | 126 pixman_image_t *fb; 166 pixman_image_t *server; /* vnc server surface */
|
H A D | console.c | 507 DisplaySurface *qemu_create_displaysurface_pixman(pixman_image_t *image) in qemu_create_displaysurface_pixman() 525 pixman_image_t *glyph; in qemu_create_placeholder_surface()
|
H A D | cocoa.m | 306 pixman_image_t *pixman_image; 325 - (void) switchSurface:(pixman_image_t *)image; argument 715 - (void) switchSurface:(pixman_image_t *)image argument 2039 pixman_image_t *image = surface->image;
|
H A D | vnc-enc-tight.c | 1190 pixman_image_t *linebuf; in send_jpeg_rect() 1306 pixman_image_t *linebuf; in send_png_rect()
|
H A D | dbus-listener.c | 757 pixman_image_t *img; in dbus_gfx_update_sub()
|
H A D | console-vc.c | 158 static pixman_image_t *glyphs[256]; in vga_putcharxy()
|
H A D | spice-display.c | 131 pixman_image_t *dest; in qemu_spice_create_one_update()
|
H A D | vnc.c | 3109 pixman_image_t *tmpbuf = NULL; in vnc_refresh_server_surface()
|
/qemu/hw/display/ |
H A D | ramfb.c | 39 static void ramfb_unmap_display_surface(pixman_image_t *image, void *unused) in ramfb_unmap_display_surface()
|
H A D | vhost-user-gpu.c | 327 pixman_image_t *image = in vhost_user_gpu_handle_display()
|
H A D | virtio-gpu.c | 577 static void virtio_unref_resource(pixman_image_t *image, void *data) in virtio_unref_resource() 659 pixman_image_t *rect; in virtio_gpu_do_set_scanout()
|
/qemu/include/hw/virtio/ |
H A D | virtio-gpu.h | 53 pixman_image_t *image;
|
/qemu/contrib/vhost-user-gpu/ |
H A D | vhost-user-gpu.c | 40 pixman_image_t *image; 837 pixman_image_t *img = in vg_resource_flush()
|