diff options
author | Thomas Huth <thuth@redhat.com> | 2022-05-19 17:56:24 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-06-03 08:03:28 +0200 |
commit | 9eafdeeac3513eb515c0e602fc56aa73353cf20d (patch) | |
tree | 674b90cf190aef4111d90f8bb3f57e7db5366533 /softmmu/globals.c | |
parent | a743d60bcaa6a3a33f4376f87c1fc7cc977bc811 (diff) | |
download | qemu-9eafdeeac3513eb515c0e602fc56aa73353cf20d.zip qemu-9eafdeeac3513eb515c0e602fc56aa73353cf20d.tar.gz qemu-9eafdeeac3513eb515c0e602fc56aa73353cf20d.tar.bz2 |
ui: Switch "-display sdl" to use the QAPI parser
The "-display sdl" option still uses a hand-crafted parser for its
parameters since we didn't want to drag an interface we considered
somewhat flawed into the QAPI schema. Since the flaws are gone now,
it's time to QAPIfy.
This introduces the new "DisplaySDL" QAPI struct that is used to hold
the parameters that are unique to the SDL display. The only specific
parameter is currently "grab-mod" that is used to specify the required
modifier keys to escape from the mouse grabbing mode.
Message-Id: <20220519155625.1414365-3-thuth@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'softmmu/globals.c')
-rw-r--r-- | softmmu/globals.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/softmmu/globals.c b/softmmu/globals.c index 916bc12..527edbe 100644 --- a/softmmu/globals.c +++ b/softmmu/globals.c @@ -50,8 +50,6 @@ QEMUOptionRom option_rom[MAX_OPTION_ROMS]; int nb_option_roms; int old_param; const char *qemu_name; -int alt_grab; -int ctrl_grab; unsigned int nb_prom_envs; const char *prom_envs[MAX_PROM_ENVS]; uint8_t *boot_splash_filedata; |