qxl-render.c (cc28dce2eccdcfc2660b8bf680eaa340ef2067d5) qxl-render.c (46517dd4971fc1fdd5b379e72cc377626ad98160)
1/*
2 * qxl local rendering (aka display on sdl/vnc)
3 *
4 * Copyright (C) 2010 Red Hat, Inc.
5 *
6 * maintained by Gerd Hoffmann <kraxel@redhat.com>
7 *
8 * This program is free software; you can redistribute it and/or

--- 7 unchanged lines hidden (view full) ---

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 "qemu/osdep.h"
23#include "qxl.h"
1/*
2 * qxl local rendering (aka display on sdl/vnc)
3 *
4 * Copyright (C) 2010 Red Hat, Inc.
5 *
6 * maintained by Gerd Hoffmann <kraxel@redhat.com>
7 *
8 * This program is free software; you can redistribute it and/or

--- 7 unchanged lines hidden (view full) ---

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 "qemu/osdep.h"
23#include "qxl.h"
24#include "sysemu/sysemu.h"
24#include "trace.h"
25
26static void qxl_blit(PCIQXLDevice *qxl, QXLRect *rect)
27{
28 DisplaySurface *surface = qemu_console_surface(qxl->vga.con);
29 uint8_t *dst = surface_data(surface);
30 uint8_t *src;
31 int len, i;

--- 299 unchanged lines hidden ---
25#include "trace.h"
26
27static void qxl_blit(PCIQXLDevice *qxl, QXLRect *rect)
28{
29 DisplaySurface *surface = qemu_console_surface(qxl->vga.con);
30 uint8_t *dst = surface_data(surface);
31 uint8_t *src;
32 int len, i;

--- 299 unchanged lines hidden ---