2012-11-13 16:38:06 +08:00
|
|
|
/*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2013-01-21 20:03:47 +08:00
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "ui/console.h"
|
2012-09-25 22:23:24 +08:00
|
|
|
|
|
|
|
int qemu_pixman_get_type(int rshift, int gshift, int bshift)
|
|
|
|
{
|
|
|
|
int type = PIXMAN_TYPE_OTHER;
|
|
|
|
|
|
|
|
if (rshift > gshift && gshift > bshift) {
|
|
|
|
if (bshift == 0) {
|
|
|
|
type = PIXMAN_TYPE_ARGB;
|
|
|
|
} else {
|
|
|
|
#if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0, 21, 8)
|
|
|
|
type = PIXMAN_TYPE_RGBA;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
} else if (rshift < gshift && gshift < bshift) {
|
|
|
|
if (rshift == 0) {
|
|
|
|
type = PIXMAN_TYPE_ABGR;
|
|
|
|
} else {
|
2012-12-14 15:54:21 +08:00
|
|
|
#if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0, 16, 0)
|
2012-09-25 22:23:24 +08:00
|
|
|
type = PIXMAN_TYPE_BGRA;
|
2012-11-27 02:49:58 +08:00
|
|
|
#endif
|
2012-09-25 22:23:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
pixman_format_code_t qemu_pixman_get_format(PixelFormat *pf)
|
|
|
|
{
|
|
|
|
pixman_format_code_t format;
|
|
|
|
int type;
|
|
|
|
|
|
|
|
type = qemu_pixman_get_type(pf->rshift, pf->gshift, pf->bshift);
|
|
|
|
format = PIXMAN_FORMAT(pf->bits_per_pixel, type,
|
|
|
|
pf->abits, pf->rbits, pf->gbits, pf->bbits);
|
|
|
|
if (!pixman_format_supported_source(format)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return format;
|
|
|
|
}
|
|
|
|
|
|
|
|
pixman_image_t *qemu_pixman_linebuf_create(pixman_format_code_t format,
|
|
|
|
int width)
|
|
|
|
{
|
|
|
|
pixman_image_t *image = pixman_image_create_bits(format, width, 1, NULL, 0);
|
|
|
|
assert(image != NULL);
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_pixman_linebuf_fill(pixman_image_t *linebuf, pixman_image_t *fb,
|
2012-12-14 15:54:24 +08:00
|
|
|
int width, int x, int y)
|
2012-09-25 22:23:24 +08:00
|
|
|
{
|
|
|
|
pixman_image_composite(PIXMAN_OP_SRC, fb, NULL, linebuf,
|
2012-12-14 15:54:24 +08:00
|
|
|
x, y, 0, 0, 0, 0, width, 1);
|
2012-09-25 22:23:24 +08:00
|
|
|
}
|
|
|
|
|
2012-11-02 16:12:49 +08:00
|
|
|
pixman_image_t *qemu_pixman_mirror_create(pixman_format_code_t format,
|
|
|
|
pixman_image_t *image)
|
|
|
|
{
|
|
|
|
pixman_image_t *mirror;
|
|
|
|
|
|
|
|
mirror = pixman_image_create_bits(format,
|
|
|
|
pixman_image_get_width(image),
|
|
|
|
pixman_image_get_height(image),
|
|
|
|
NULL,
|
|
|
|
pixman_image_get_stride(image));
|
|
|
|
return mirror;
|
|
|
|
}
|
|
|
|
|
2012-09-25 22:23:24 +08:00
|
|
|
void qemu_pixman_image_unref(pixman_image_t *image)
|
|
|
|
{
|
|
|
|
if (image == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pixman_image_unref(image);
|
|
|
|
}
|
2013-03-06 21:14:17 +08:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|