mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
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>
This commit is contained in:
parent
eb2f9b024d
commit
867c538f98
2 changed files with 13 additions and 0 deletions
|
@ -79,3 +79,14 @@ void qemu_pixman_image_unref(pixman_image_t *image)
|
|||
}
|
||||
pixman_image_unref(image);
|
||||
}
|
||||
|
||||
pixman_color_t qemu_pixman_color(PixelFormat *pf, uint32_t color)
|
||||
{
|
||||
pixman_color_t c;
|
||||
|
||||
c.red = ((color & pf->rmask) >> pf->rshift) << (16 - pf->rbits);
|
||||
c.green = ((color & pf->gmask) >> pf->gshift) << (16 - pf->gbits);
|
||||
c.blue = ((color & pf->bmask) >> pf->bshift) << (16 - pf->bbits);
|
||||
c.alpha = ((color & pf->amask) >> pf->ashift) << (16 - pf->abits);
|
||||
return c;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue