From afa9ab41b9f7adf83af648a068b8fe39a4eda5d0 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 12 May 2026 15:53:30 -0400 Subject: [PATCH] meson: fix renderdoc integration define this should be an integer Fixes: 93390d4b73d ("vk/runtime,zink: only integrate renderdoc on supported platforms") Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index bdff7fb7abb..5c42552f5b2 100644 --- a/meson.build +++ b/meson.build @@ -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