diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-11-02 09:12:49 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-11-05 11:54:49 +0100 |
commit | d9a86569ca3617a495ffb352e9a390747eaa6b24 (patch) | |
tree | ea4d14aa946fa8274d8639fdb047af5036a4b709 /qemu-pixman.h | |
parent | e32c25b5f2452c7fed4dbe8962f4a9f4831fbe24 (diff) |
spice: switch to pixman
Switch over spice-display.c to use the pixman library
instead of the home-grown pflib bits.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'qemu-pixman.h')
-rw-r--r-- | qemu-pixman.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qemu-pixman.h b/qemu-pixman.h index 7652c41277..e267d73683 100644 --- a/qemu-pixman.h +++ b/qemu-pixman.h @@ -27,6 +27,8 @@ pixman_image_t *qemu_pixman_linebuf_create(pixman_format_code_t format, int width); void qemu_pixman_linebuf_fill(pixman_image_t *linebuf, pixman_image_t *fb, int width, int y); +pixman_image_t *qemu_pixman_mirror_create(pixman_format_code_t format, + pixman_image_t *image); void qemu_pixman_image_unref(pixman_image_t *image); #endif /* QEMU_PIXMAN_H */ |