mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-21 08:58:10 +02:00
meson: fix renderdoc integration define
this should be an integer Fixes:93390d4b73("vk/runtime,zink: only integrate renderdoc on supported platforms") (cherry picked from commitafa9ab41b9) Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41540>
This commit is contained in:
parent
dad2ee26f0
commit
bb8b01ef3c
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue