diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2023-12-22 11:48:46 +0000 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-12-31 09:11:29 +0100 |
commit | f705c1f25d9a075534f8279048082af4ce2066bf (patch) | |
tree | ee65d497db94c48755e4d2d2048e259e6fc8d231 | |
parent | d0cda6f461fd33c5f9b063781c63c1ce5fd3fa3b (diff) | |
download | qemu-f705c1f25d9a075534f8279048082af4ce2066bf.zip qemu-f705c1f25d9a075534f8279048082af4ce2066bf.tar.gz qemu-f705c1f25d9a075534f8279048082af4ce2066bf.tar.bz2 |
meson.build: report graphics backends separately
To enable accelerated VirtIO GPUs for the guest we need the rendering
support on the host, which currently it's reported in the configuration
summary under the "dependencies" section. Add a graphics backend section
and report the status of the VirGL and Rutabaga support libraries.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20231222114846.2850741-1-alex.bennee@linaro.org>
[Remove from dependencies as suggested by Philippe. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | meson.build | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 44bc5bf..5a25827 100644 --- a/meson.build +++ b/meson.build @@ -4302,6 +4302,12 @@ summary_info += {'curses support': curses} summary_info += {'brlapi support': brlapi} summary(summary_info, bool_yn: true, section: 'User interface') +# Graphics backends +summary_info = {} +summary_info += {'VirGL support': virgl} +summary_info += {'Rutabaga support': rutabaga} +summary(summary_info, bool_yn: true, section: 'Graphics backends') + # Audio backends summary_info = {} if host_os not in ['darwin', 'haiku', 'windows'] @@ -4337,8 +4343,6 @@ summary_info = {} summary_info += {'libtasn1': tasn1} summary_info += {'PAM': pam} summary_info += {'iconv support': iconv} -summary_info += {'virgl support': virgl} -summary_info += {'rutabaga support': rutabaga} summary_info += {'blkio support': blkio} summary_info += {'curl support': curl} summary_info += {'Multipath support': mpathpersist} |