From 1c268196b848a4c5b48ba4ecfa802d9ce578bcaf Mon Sep 17 00:00:00 2001 From: Friedrich Vock Date: Tue, 4 Jul 2023 12:20:01 +0200 Subject: [PATCH] meson: Prefix Vulkan "Ray Tracing" summary with "Intel" This only applies to Intel's ray tracing. With RADV also having ray tracing support that is always compiled in, seeing "Ray Tracing: NO" is a bit misleading. Reviewed-by: Joshua Ashton Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 5b88772d907..e48ae49e17c 100644 --- a/meson.build +++ b/meson.build @@ -2216,7 +2216,7 @@ if with_any_vk vulkan_summary += {'Layers': get_option('vulkan-layers')} endif vulkan_summary += {'Video codecs': _codecs.length() != 0 ? _codecs : false} - vulkan_summary += {'Ray tracing': with_intel_vk_rt ? 'intel' : false} + vulkan_summary += {'Intel Ray tracing': with_intel_vk_rt} endif summary(vulkan_summary, section: 'Vulkan', bool_yn: true, list_sep: ' ')