meson: fix renderdoc integration define
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

this should be an integer

Fixes: 93390d4b73 ("vk/runtime,zink: only integrate renderdoc on supported platforms")
(cherry picked from commit afa9ab41b9)

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41540>
This commit is contained in:
Mike Blumenkrantz 2026-05-12 15:53:30 -04:00 committed by Eric Engestrom
parent dad2ee26f0
commit bb8b01ef3c
2 changed files with 2 additions and 2 deletions

View file

@ -234,7 +234,7 @@
"description": "meson: fix renderdoc integration define",
"nominated": true,
"nomination_type": 2,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "93390d4b73d1786070613fc685aed7d63b032ca7",
"notes": null

View file

@ -2262,7 +2262,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