]> Git Repo - qemu.git/blob - hw/qxl-render.c
Merge qemu-iotests into for-anthony
[qemu.git] / hw / qxl-render.c
1 /*
2  * qxl local rendering (aka display on sdl/vnc)
3  *
4  * Copyright (C) 2010 Red Hat, Inc.
5  *
6  * maintained by Gerd Hoffmann <[email protected]>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 or
11  * (at your option) version 3 of the License.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, see <http://www.gnu.org/licenses/>.
20  */
21
22 #include "qxl.h"
23
24 static void qxl_flip(PCIQXLDevice *qxl, QXLRect *rect)
25 {
26     uint8_t *src = qxl->guest_primary.data;
27     uint8_t *dst = qxl->guest_primary.flipped;
28     int len, i;
29
30     src += (qxl->guest_primary.surface.height - rect->top - 1) *
31         qxl->guest_primary.abs_stride;
32     dst += rect->top  * qxl->guest_primary.abs_stride;
33     src += rect->left * qxl->guest_primary.bytes_pp;
34     dst += rect->left * qxl->guest_primary.bytes_pp;
35     len  = (rect->right - rect->left) * qxl->guest_primary.bytes_pp;
36
37     for (i = rect->top; i < rect->bottom; i++) {
38         memcpy(dst, src, len);
39         dst += qxl->guest_primary.abs_stride;
40         src -= qxl->guest_primary.abs_stride;
41     }
42 }
43
44 void qxl_render_resize(PCIQXLDevice *qxl)
45 {
46     QXLSurfaceCreate *sc = &qxl->guest_primary.surface;
47
48     qxl->guest_primary.qxl_stride = sc->stride;
49     qxl->guest_primary.abs_stride = abs(sc->stride);
50     qxl->guest_primary.resized++;
51     switch (sc->format) {
52     case SPICE_SURFACE_FMT_16_555:
53         qxl->guest_primary.bytes_pp = 2;
54         qxl->guest_primary.bits_pp = 15;
55         break;
56     case SPICE_SURFACE_FMT_16_565:
57         qxl->guest_primary.bytes_pp = 2;
58         qxl->guest_primary.bits_pp = 16;
59         break;
60     case SPICE_SURFACE_FMT_32_xRGB:
61     case SPICE_SURFACE_FMT_32_ARGB:
62         qxl->guest_primary.bytes_pp = 4;
63         qxl->guest_primary.bits_pp = 32;
64         break;
65     default:
66         fprintf(stderr, "%s: unhandled format: %x\n", __FUNCTION__,
67                 qxl->guest_primary.surface.format);
68         qxl->guest_primary.bytes_pp = 4;
69         qxl->guest_primary.bits_pp = 32;
70         break;
71     }
72 }
73
74 void qxl_render_update(PCIQXLDevice *qxl)
75 {
76     VGACommonState *vga = &qxl->vga;
77     QXLRect dirty[32], update;
78     void *ptr;
79     int i, redraw = 0;
80
81     if (!is_buffer_shared(vga->ds->surface)) {
82         dprint(qxl, 1, "%s: restoring shared displaysurface\n", __func__);
83         qxl->guest_primary.resized++;
84         qxl->guest_primary.commands++;
85         redraw = 1;
86     }
87
88     if (qxl->guest_primary.resized) {
89         qxl->guest_primary.resized = 0;
90
91         if (qxl->guest_primary.flipped) {
92             g_free(qxl->guest_primary.flipped);
93             qxl->guest_primary.flipped = NULL;
94         }
95         qemu_free_displaysurface(vga->ds);
96
97         qxl->guest_primary.data = memory_region_get_ram_ptr(&qxl->vga.vram);
98         if (qxl->guest_primary.qxl_stride < 0) {
99             /* spice surface is upside down -> need extra buffer to flip */
100             qxl->guest_primary.flipped =
101                 g_malloc(qxl->guest_primary.surface.width *
102                          qxl->guest_primary.abs_stride);
103             ptr = qxl->guest_primary.flipped;
104         } else {
105             ptr = qxl->guest_primary.data;
106         }
107         dprint(qxl, 1, "%s: %dx%d, stride %d, bpp %d, depth %d, flip %s\n",
108                __FUNCTION__,
109                qxl->guest_primary.surface.width,
110                qxl->guest_primary.surface.height,
111                qxl->guest_primary.qxl_stride,
112                qxl->guest_primary.bytes_pp,
113                qxl->guest_primary.bits_pp,
114                qxl->guest_primary.flipped ? "yes" : "no");
115         vga->ds->surface =
116             qemu_create_displaysurface_from(qxl->guest_primary.surface.width,
117                                             qxl->guest_primary.surface.height,
118                                             qxl->guest_primary.bits_pp,
119                                             qxl->guest_primary.abs_stride,
120                                             ptr);
121         dpy_resize(vga->ds);
122     }
123
124     update.left   = 0;
125     update.right  = qxl->guest_primary.surface.width;
126     update.top    = 0;
127     update.bottom = qxl->guest_primary.surface.height;
128
129     memset(dirty, 0, sizeof(dirty));
130     if (runstate_is_running() && qxl->guest_primary.commands) {
131         qxl->guest_primary.commands = 0;
132         qxl_spice_update_area(qxl, 0, &update,
133                               dirty, ARRAY_SIZE(dirty), 1, QXL_SYNC);
134     }
135     if (redraw) {
136         memset(dirty, 0, sizeof(dirty));
137         dirty[0] = update;
138     }
139
140     for (i = 0; i < ARRAY_SIZE(dirty); i++) {
141         if (qemu_spice_rect_is_empty(dirty+i)) {
142             break;
143         }
144         if (qxl->guest_primary.flipped) {
145             qxl_flip(qxl, dirty+i);
146         }
147         dpy_update(vga->ds,
148                    dirty[i].left, dirty[i].top,
149                    dirty[i].right - dirty[i].left,
150                    dirty[i].bottom - dirty[i].top);
151     }
152 }
153
154 static QEMUCursor *qxl_cursor(PCIQXLDevice *qxl, QXLCursor *cursor)
155 {
156     QEMUCursor *c;
157     uint8_t *image, *mask;
158     size_t size;
159
160     c = cursor_alloc(cursor->header.width, cursor->header.height);
161     c->hot_x = cursor->header.hot_spot_x;
162     c->hot_y = cursor->header.hot_spot_y;
163     switch (cursor->header.type) {
164     case SPICE_CURSOR_TYPE_ALPHA:
165         size = cursor->header.width * cursor->header.height * sizeof(uint32_t);
166         memcpy(c->data, cursor->chunk.data, size);
167         if (qxl->debug > 2) {
168             cursor_print_ascii_art(c, "qxl/alpha");
169         }
170         break;
171     case SPICE_CURSOR_TYPE_MONO:
172         mask  = cursor->chunk.data;
173         image = mask + cursor_get_mono_bpl(c) * c->width;
174         cursor_set_mono(c, 0xffffff, 0x000000, image, 1, mask);
175         if (qxl->debug > 2) {
176             cursor_print_ascii_art(c, "qxl/mono");
177         }
178         break;
179     default:
180         fprintf(stderr, "%s: not implemented: type %d\n",
181                 __FUNCTION__, cursor->header.type);
182         goto fail;
183     }
184     return c;
185
186 fail:
187     cursor_put(c);
188     return NULL;
189 }
190
191
192 /* called from spice server thread context only */
193 void qxl_render_cursor(PCIQXLDevice *qxl, QXLCommandExt *ext)
194 {
195     QXLCursorCmd *cmd = qxl_phys2virt(qxl, ext->cmd.data, ext->group_id);
196     QXLCursor *cursor;
197     QEMUCursor *c;
198
199     if (!qxl->ssd.ds->mouse_set || !qxl->ssd.ds->cursor_define) {
200         return;
201     }
202
203     if (qxl->debug > 1 && cmd->type != QXL_CURSOR_MOVE) {
204         fprintf(stderr, "%s", __FUNCTION__);
205         qxl_log_cmd_cursor(qxl, cmd, ext->group_id);
206         fprintf(stderr, "\n");
207     }
208     switch (cmd->type) {
209     case QXL_CURSOR_SET:
210         cursor = qxl_phys2virt(qxl, cmd->u.set.shape, ext->group_id);
211         if (cursor->chunk.data_size != cursor->data_size) {
212             fprintf(stderr, "%s: multiple chunks\n", __FUNCTION__);
213             return;
214         }
215         c = qxl_cursor(qxl, cursor);
216         if (c == NULL) {
217             c = cursor_builtin_left_ptr();
218         }
219         qemu_mutex_lock(&qxl->ssd.lock);
220         if (qxl->ssd.cursor) {
221             cursor_put(qxl->ssd.cursor);
222         }
223         qxl->ssd.cursor = c;
224         qxl->ssd.mouse_x = cmd->u.set.position.x;
225         qxl->ssd.mouse_y = cmd->u.set.position.y;
226         qemu_mutex_unlock(&qxl->ssd.lock);
227         break;
228     case QXL_CURSOR_MOVE:
229         qemu_mutex_lock(&qxl->ssd.lock);
230         qxl->ssd.mouse_x = cmd->u.position.x;
231         qxl->ssd.mouse_y = cmd->u.position.y;
232         qemu_mutex_unlock(&qxl->ssd.lock);
233         break;
234     }
235 }
This page took 0.040587 seconds and 4 git commands to generate.