diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-12 14:39:22 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-04-16 09:03:48 +0200 |
commit | 321f048d248472f1e90559976bb917d869981c68 (patch) | |
tree | 21003b91f2cec2f2c05dbf7db09f77d633830617 /include/ui | |
parent | 1dbfa005032d4fa5d7a5242da856d3487c907431 (diff) | |
download | qemu-321f048d248472f1e90559976bb917d869981c68.zip |
console: give each QemuConsole its own DisplaySurface
Go away from the global DisplaySurface, give one to each QemuConsole
instead. With this patch applied it is possible to call
graphics_hw_* functions with qemu consoles which are not the current
foreground console.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'include/ui')
-rw-r--r-- | include/ui/console.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/ui/console.h b/include/ui/console.h index 9c585c0d49..0dd66fd91f 100644 --- a/include/ui/console.h +++ b/include/ui/console.h @@ -183,7 +183,6 @@ struct DisplayChangeListener { }; struct DisplayState { - struct DisplaySurface *surface; struct QEMUTimer *gui_timer; bool have_gfx; bool have_text; |