meson: fix renderdoc integration define

this should be an integer

Fixes: 93390d4b73 ("vk/runtime,zink: only integrate renderdoc on supported platforms")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41519>
This commit is contained in:
Mike Blumenkrantz 2026-05-12 15:53:30 -04:00 committed by Marge Bot
parent 6cb04bb791
commit afa9ab41b9

View file

@ -2328,7 +2328,7 @@ renderdoc_integration_supported = [
'linux',
'android',
].contains(host_machine.system())
pre_args += '-DHAVE_RENDERDOC_INTEGRATION=@0@'.format(renderdoc_integration_supported)
pre_args += '-DHAVE_RENDERDOC_INTEGRATION=@0@'.format(renderdoc_integration_supported.to_int())
with_teflon = get_option('teflon')
if with_teflon and with_tests