[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL v2 7/8] console: add qemu_pixman_linebuf_copy
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PULL v2 7/8] console: add qemu_pixman_linebuf_copy |
Date: |
Wed, 10 Sep 2014 12:56:42 +0200 |
Helper function for copying data from linebuf to framebuffer using
pixman, possibly converting in case src and dst formats differ.
Signed-off-by: Gerd Hoffmann <address@hidden>
---
include/ui/qemu-pixman.h | 2 ++
ui/qemu-pixman.c | 9 +++++++++
2 files changed, 11 insertions(+)
diff --git a/include/ui/qemu-pixman.h b/include/ui/qemu-pixman.h
index 80ed94a..381969d 100644
--- a/include/ui/qemu-pixman.h
+++ b/include/ui/qemu-pixman.h
@@ -42,6 +42,8 @@ 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 5d8bd46..30c7fdd 100644
--- a/ui/qemu-pixman.c
+++ b/ui/qemu-pixman.c
@@ -133,6 +133,7 @@ pixman_image_t
*qemu_pixman_linebuf_create(pixman_format_code_t format,
return image;
}
+/* fill linebuf from framebuffer */
void qemu_pixman_linebuf_fill(pixman_image_t *linebuf, pixman_image_t *fb,
int width, int x, int y)
{
@@ -140,6 +141,14 @@ 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)
{
--
1.8.3.1
- [Qemu-devel] [PULL v2 0/8] console: pixman conversion continued, Gerd Hoffmann, 2014/09/10
- [Qemu-devel] [PULL v2 1/8] console: add qemu_pixelformat_from_pixman, Gerd Hoffmann, 2014/09/10
- [Qemu-devel] [PULL v2 2/8] console: add qemu_default_pixman_format, Gerd Hoffmann, 2014/09/10
- [Qemu-devel] [PULL v2 3/8] console: reimplement qemu_default_pixelformat, Gerd Hoffmann, 2014/09/10
- [Qemu-devel] [PULL v2 8/8] console: Remove unused QEMU_BIG_ENDIAN_FLAG, Gerd Hoffmann, 2014/09/10
- [Qemu-devel] [PULL v2 5/8] console: add qemu_create_displaysurface_guestmem, Gerd Hoffmann, 2014/09/10
- [Qemu-devel] [PULL v2 6/8] console: add dpy_gfx_update_dirty, Gerd Hoffmann, 2014/09/10
- [Qemu-devel] [PULL v2 7/8] console: add qemu_pixman_linebuf_copy,
Gerd Hoffmann <=
- [Qemu-devel] [PULL v2 4/8] console: stop using PixelFormat, Gerd Hoffmann, 2014/09/10
- Re: [Qemu-devel] [PULL v2 0/8] console: pixman conversion continued, Peter Maydell, 2014/09/11