diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-06 14:14:17 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-04-16 09:03:47 +0200 |
commit | 867c538f988d326f6b447acde867e5de5a5014a0 (patch) | |
tree | f1805dcfbf76d7bf33029b7a1c5e60eeaf8baa7f /include/ui | |
parent | eb2f9b024d68884a3b25e63e4dbf90b67f8da236 (diff) | |
download | qemu-867c538f988d326f6b447acde867e5de5a5014a0.zip qemu-867c538f988d326f6b447acde867e5de5a5014a0.tar.gz qemu-867c538f988d326f6b447acde867e5de5a5014a0.tar.bz2 |
pixman: add qemu_pixman_color()
Helper function to map qemu colors (32bit integer + matching PixelFormat)
into pixman_color_t.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'include/ui')
-rw-r--r-- | include/ui/qemu-pixman.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ui/qemu-pixman.h b/include/ui/qemu-pixman.h index b032f52..b0f09b5 100644 --- a/include/ui/qemu-pixman.h +++ b/include/ui/qemu-pixman.h @@ -43,4 +43,6 @@ 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); +pixman_color_t qemu_pixman_color(PixelFormat *pf, uint32_t color); + #endif /* QEMU_PIXMAN_H */ |