diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-12 13:44:38 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-04-16 09:03:48 +0200 |
commit | 1dbfa005032d4fa5d7a5242da856d3487c907431 (patch) | |
tree | 511de9d82785cdd3bfa5528911dd9ff62073bac3 /hw/display/vga_int.h | |
parent | 64840c66b702cc4c809c72d8ad5d26861dd7fd8d (diff) |
console: rename vga_hw_*, add QemuConsole param
Add QemuConsole parameter to vga_hw_*, so the interface allows to update
non-active consoles (the actual code can't handle this yet, see next
patch). Passing NULL is allowed and updates the active console, like
the functions do today.
While touching all vga_hw_* calls anyway rename that to the functions to
hardware-neutral graphics_hw_*
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/display/vga_int.h')
-rw-r--r-- | hw/display/vga_int.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/display/vga_int.h b/hw/display/vga_int.h index 260f7d6948..1b8f670868 100644 --- a/hw/display/vga_int.h +++ b/hw/display/vga_int.h @@ -152,10 +152,10 @@ typedef struct VGACommonState { uint32_t cursor_offset; unsigned int (*rgb_to_pixel)(unsigned int r, unsigned int g, unsigned b); - vga_hw_update_ptr update; - vga_hw_invalidate_ptr invalidate; - vga_hw_screen_dump_ptr screen_dump; - vga_hw_text_update_ptr text_update; + graphic_hw_update_ptr update; + graphic_hw_invalidate_ptr invalidate; + graphic_hw_screen_dump_ptr screen_dump; + graphic_hw_text_update_ptr text_update; bool full_update_text; bool full_update_gfx; /* hardware mouse cursor support */ |