[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 4/6] qxl: add support for chunked cursors.
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PULL 4/6] qxl: add support for chunked cursors. |
Date: |
Wed, 13 Sep 2017 09:41:38 +0200 |
Signed-off-by: Gerd Hoffmann <address@hidden>
Message-id: address@hidden
---
hw/display/qxl-render.c | 36 +++++++++++++++++++++++++++++-------
1 file changed, 29 insertions(+), 7 deletions(-)
diff --git a/hw/display/qxl-render.c b/hw/display/qxl-render.c
index e1b3f05ecb..90e0865618 100644
--- a/hw/display/qxl-render.c
+++ b/hw/display/qxl-render.c
@@ -204,7 +204,33 @@ void qxl_render_update_area_done(PCIQXLDevice *qxl,
QXLCookie *cookie)
g_free(cookie);
}
-static QEMUCursor *qxl_cursor(PCIQXLDevice *qxl, QXLCursor *cursor)
+static void qxl_unpack_chunks(void *dest, size_t size, PCIQXLDevice *qxl,
+ QXLDataChunk *chunk, uint32_t group_id)
+{
+ uint32_t max_chunks = 32;
+ size_t offset = 0;
+ size_t bytes;
+
+ for (;;) {
+ bytes = MIN(size - offset, chunk->data_size);
+ memcpy(dest + offset, chunk->data, bytes);
+ offset += bytes;
+ if (offset == size) {
+ return;
+ }
+ chunk = qxl_phys2virt(qxl, chunk->next_chunk, group_id);
+ if (!chunk) {
+ return;
+ }
+ max_chunks--;
+ if (max_chunks == 0) {
+ return;
+ }
+ }
+}
+
+static QEMUCursor *qxl_cursor(PCIQXLDevice *qxl, QXLCursor *cursor,
+ uint32_t group_id)
{
QEMUCursor *c;
size_t size;
@@ -215,7 +241,7 @@ static QEMUCursor *qxl_cursor(PCIQXLDevice *qxl, QXLCursor
*cursor)
switch (cursor->header.type) {
case SPICE_CURSOR_TYPE_ALPHA:
size = sizeof(uint32_t) * cursor->header.width * cursor->header.height;
- memcpy(c->data, cursor->chunk.data, size);
+ qxl_unpack_chunks(c->data, size, qxl, &cursor->chunk, group_id);
if (qxl->debug > 2) {
cursor_print_ascii_art(c, "qxl/alpha");
}
@@ -259,11 +285,7 @@ int qxl_render_cursor(PCIQXLDevice *qxl, QXLCommandExt
*ext)
if (!cursor) {
return 1;
}
- if (cursor->chunk.data_size != cursor->data_size) {
- fprintf(stderr, "%s: multiple chunks\n", __FUNCTION__);
- return 1;
- }
- c = qxl_cursor(qxl, cursor);
+ c = qxl_cursor(qxl, cursor, ext->group_id);
if (c == NULL) {
c = cursor_builtin_left_ptr();
}
--
2.9.3
- [Qemu-devel] [PULL 0/6] Vga 20170913 patches, Gerd Hoffmann, 2017/09/13
- [Qemu-devel] [PULL 1/6] vga: fix display update region calculation (split screen), Gerd Hoffmann, 2017/09/13
- [Qemu-devel] [PULL 4/6] qxl: add support for chunked cursors.,
Gerd Hoffmann <=
- [Qemu-devel] [PULL 6/6] virtio-gpu: don't clear QemuUIInfo information on reset, Gerd Hoffmann, 2017/09/13
- [Qemu-devel] [PULL 2/6] vga: stop passing pointers to vga_draw_line* functions, Gerd Hoffmann, 2017/09/13
- [Qemu-devel] [PULL 3/6] qxl: drop mono cursor support, Gerd Hoffmann, 2017/09/13
- [Qemu-devel] [PULL 5/6] vga/migration: Update memory map in post_load, Gerd Hoffmann, 2017/09/13
- Re: [Qemu-devel] [PULL 0/6] Vga 20170913 patches, Peter Maydell, 2017/09/14