[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 02/67] ui: remove qemu_pixman_linebuf_copy()
From: |
marcandre . lureau |
Subject: |
[PATCH 02/67] ui: remove qemu_pixman_linebuf_copy() |
Date: |
Wed, 30 Aug 2023 13:37:36 +0400 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
Since commit 43c7d8bd449 ("console: add qemu_pixman_linebuf_copy"), it
seems it was never used.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
include/ui/qemu-pixman.h | 2 --
ui/qemu-pixman.c | 8 --------
2 files changed, 10 deletions(-)
diff --git a/include/ui/qemu-pixman.h b/include/ui/qemu-pixman.h
index fd78d17124..ce4518e4de 100644
--- a/include/ui/qemu-pixman.h
+++ b/include/ui/qemu-pixman.h
@@ -72,8 +72,6 @@ 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 x, int y);
-void qemu_pixman_linebuf_copy(pixman_image_t *fb, int width, int x, int y,
- pixman_image_t *linebuf);
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);
diff --git a/ui/qemu-pixman.c b/ui/qemu-pixman.c
index c5053cd326..be00a96340 100644
--- a/ui/qemu-pixman.c
+++ b/ui/qemu-pixman.c
@@ -200,14 +200,6 @@ void qemu_pixman_linebuf_fill(pixman_image_t *linebuf,
pixman_image_t *fb,
x, y, 0, 0, 0, 0, width, 1);
}
-/* copy linebuf to framebuffer */
-void qemu_pixman_linebuf_copy(pixman_image_t *fb, int width, int x, int y,
- pixman_image_t *linebuf)
-{
- pixman_image_composite(PIXMAN_OP_SRC, linebuf, NULL, fb,
- 0, 0, 0, 0, x, y, width, 1);
-}
-
pixman_image_t *qemu_pixman_mirror_create(pixman_format_code_t format,
pixman_image_t *image)
{
--
2.41.0
- [PATCH 00/67] Make pixman an optional dependency, marcandre . lureau, 2023/08/30
- [PATCH 01/67] ui: remove qemu_pixman_color() helper, marcandre . lureau, 2023/08/30
- [PATCH 02/67] ui: remove qemu_pixman_linebuf_copy(),
marcandre . lureau <=
- [PATCH 03/67] ui/qmp: move screendump to ui-qmp-cmds.c, marcandre . lureau, 2023/08/30
- [PATCH 04/67] ui/vc: replace vc_chr_write() with generic qemu_chr_write(), marcandre . lureau, 2023/08/30
- [PATCH 05/67] ui/vc: drop have_text, marcandre . lureau, 2023/08/30
- [PATCH 06/67] ui/console: console_select() regardless of have_gfx, marcandre . lureau, 2023/08/30