diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2016-04-19 16:55:22 -0300 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-05-20 14:28:53 -0300 |
commit | 19a2c6269f2e81d3aecdddb4d77fb674f9ca8fa3 (patch) | |
tree | 294e376f6e9ec610ea1fafbcb2b5c2b41df748f4 /vl.c | |
parent | e35ee7c1aa1f257d3e0e52422cf4bd79d3b68d58 (diff) | |
download | qemu-19a2c6269f2e81d3aecdddb4d77fb674f9ca8fa3.zip qemu-19a2c6269f2e81d3aecdddb4d77fb674f9ca8fa3.tar.gz qemu-19a2c6269f2e81d3aecdddb4d77fb674f9ca8fa3.tar.bz2 |
gtk: Initialization stubs
This reduces the number of CONFIG_GTK #ifdefs in vl.c.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -148,9 +148,7 @@ int vga_interface_type = VGA_NONE; static int full_screen = 0; static int no_frame = 0; int no_quit = 0; -#ifdef CONFIG_GTK static bool grab_on_hover; -#endif CharDriverState *serial_hds[MAX_SERIAL_PORTS]; CharDriverState *parallel_hds[MAX_PARALLEL_PORTS]; CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES]; @@ -4246,11 +4244,10 @@ int main(int argc, char **argv, char **envp) "ignoring option"); } -#if defined(CONFIG_GTK) if (display_type == DT_GTK) { early_gtk_display_init(request_opengl); } -#endif + if (display_type == DT_SDL) { sdl_display_early_init(request_opengl); } @@ -4548,11 +4545,9 @@ int main(int argc, char **argv, char **envp) case DT_COCOA: cocoa_display_init(ds, full_screen); break; -#if defined(CONFIG_GTK) case DT_GTK: gtk_display_init(ds, full_screen, grab_on_hover); break; -#endif default: break; } |