aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2023-08-30 13:37:35 +0400
committerPatchew Applier <no-reply@patchew.org>2023-09-01 17:21:04 +0000
commit90da7d552fbcb19d1fbf68b2051f0f168b8a48f9 (patch)
treec7f818e40d47be08a46d5fea46e11a394b53cc8a
parent17780edd81d27fcfdb7a802efc870a99788bd2fc (diff)
downloadqemu-90da7d552fbcb19d1fbf68b2051f0f168b8a48f9.zip
qemu-90da7d552fbcb19d1fbf68b2051f0f168b8a48f9.tar.gz
qemu-90da7d552fbcb19d1fbf68b2051f0f168b8a48f9.tar.bz2
ui: remove qemu_pixman_color() helper
Usage removed in commit e27bd65a72d ("console: switch color_table_rgb to pixman_color_t") Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20230830093843.3531473-2-marcandre.lureau@redhat.com>
-rw-r--r--include/ui/qemu-pixman.h1
-rw-r--r--ui/qemu-pixman.c11
2 files changed, 0 insertions, 12 deletions
diff --git a/include/ui/qemu-pixman.h b/include/ui/qemu-pixman.h
index 0c77560..fd78d17 100644
--- a/include/ui/qemu-pixman.h
+++ b/include/ui/qemu-pixman.h
@@ -78,7 +78,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);
pixman_image_t *qemu_pixman_glyph_from_vgafont(int height, const uint8_t *font,
unsigned int ch);
void qemu_pixman_glyph_render(pixman_image_t *glyph,
diff --git a/ui/qemu-pixman.c b/ui/qemu-pixman.c
index e4f024a..c5053cd 100644
--- a/ui/qemu-pixman.c
+++ b/ui/qemu-pixman.c
@@ -226,17 +226,6 @@ 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;
-}
-
pixman_image_t *qemu_pixman_glyph_from_vgafont(int height, const uint8_t *font,
unsigned int ch)
{