aboutsummaryrefslogtreecommitdiff
path: root/qapi
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2018-02-02 12:10:15 +0100
committerGerd Hoffmann <kraxel@redhat.com>2018-02-20 12:12:04 +0100
commitfe91f36aa5bd846cea816cf0a9b7a13dd76559c1 (patch)
tree73447036af280ec228a6ba06367332a59d28c762 /qapi
parent0c8d7065325d84cb2521c0b52f383561d2541415 (diff)
downloadqemu-fe91f36aa5bd846cea816cf0a9b7a13dd76559c1.zip
qemu-fe91f36aa5bd846cea816cf0a9b7a13dd76559c1.tar.gz
qemu-fe91f36aa5bd846cea816cf0a9b7a13dd76559c1.tar.bz2
sdl: use DisplayOptions
Switch sdl ui to use qapi DisplayOptions for configuration. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-id: 20180202111022.19269-6-kraxel@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r--qapi/ui.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/qapi/ui.json b/qapi/ui.json
index 878a3bd..2efe967 100644
--- a/qapi/ui.json
+++ b/qapi/ui.json
@@ -1020,7 +1020,7 @@
#
##
{ 'enum' : 'DisplayType',
- 'data' : [ 'none', 'gtk' ] }
+ 'data' : [ 'none', 'gtk', 'sdl' ] }
##
# @DisplayOptions:
@@ -1042,4 +1042,5 @@
'*gl' : 'bool' },
'discriminator' : 'type',
'data' : { 'none' : 'DisplayNoOpts',
- 'gtk' : 'DisplayGTK' } }
+ 'gtk' : 'DisplayGTK',
+ 'sdl' : 'DisplayNoOpts' } }