diff --git a/.pick_status.json b/.pick_status.json index 07693ab6169..62c80d24d03 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1084,7 +1084,7 @@ "description": "vk/util: fix 'beta' check for physical device properties", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "083793a39dd9fb421bb8ae78908b18ae6cb8a178", "notes": null diff --git a/src/vulkan/util/vk_physical_device_properties_gen.py b/src/vulkan/util/vk_physical_device_properties_gen.py index df9fb116279..cae99178860 100644 --- a/src/vulkan/util/vk_physical_device_properties_gen.py +++ b/src/vulkan/util/vk_physical_device_properties_gen.py @@ -223,7 +223,7 @@ def get_property_structs(doc, api, beta): # Skip extensions with a define for now guard = required[full_name].guard - if guard is not None and (guard != "VK_ENABLE_BETA_EXTENSIONS" or not beta): + if guard is not None and (guard != "VK_ENABLE_BETA_EXTENSIONS" or beta != "true"): continue # find Vulkan structure type