mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
spice: add qxl device
qxl is a paravirtual graphics card. The qxl device is the bridge between the guest and the spice server (aka libspice-server). The spice server will send the rendering commands to the spice client, which will actually render them. The spice server is also able to render locally, which is done in case the guest wants read something from video memory. Local rendering is also used to support display over vnc and sdl. qxl is activated using "-vga qxl". qxl supports multihead, additional cards can be added via '-device qxl". [ v2: add copyright to files ] [ v2: use qemu-common.h for standard includes ] [ v2: create separate qxl-vga device for primary ] Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
7943a2fac7
commit
a19cbfb346
12 changed files with 2222 additions and 4 deletions
|
@ -106,7 +106,7 @@ typedef void (* vga_update_retrace_info_fn)(struct VGACommonState *s);
|
|||
typedef struct VGACommonState {
|
||||
uint8_t *vram_ptr;
|
||||
ram_addr_t vram_offset;
|
||||
unsigned int vram_size;
|
||||
uint32_t vram_size;
|
||||
uint32_t lfb_addr;
|
||||
uint32_t lfb_end;
|
||||
uint32_t map_addr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue