diff options
| author | Ian Elliott <ian@lunarg.com> | 2015-08-21 15:09:33 -0600 |
|---|---|---|
| committer | Ian Elliott <ian@lunarg.com> | 2015-09-04 14:58:09 -0600 |
| commit | a07819775a66866cb33718ae70d290c477867be6 (patch) | |
| tree | 37e841421a9f2e4de54dc7912203b737bcfa628d /vk_layer_documentation_generate.py | |
| parent | 3ead413d3f9328eb7855ea538dc559bb98665608 (diff) | |
| download | usermoji-a07819775a66866cb33718ae70d290c477867be6.tar.xz | |
WSI: Convert WSI swapchain extension usage to new KHR style
Diffstat (limited to 'vk_layer_documentation_generate.py')
| -rwxr-xr-x | vk_layer_documentation_generate.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vk_layer_documentation_generate.py b/vk_layer_documentation_generate.py index da18b69b..48eba171 100755 --- a/vk_layer_documentation_generate.py +++ b/vk_layer_documentation_generate.py @@ -264,8 +264,8 @@ class LayerDoc: # Now go through API names in doc and verify they're real # First we're going to transform proto names from vulkan.py into single list core_api_names = [p.name for p in vulkan.core.protos] - wsi_s_names = [p.name for p in vulkan.wsi_swapchain.protos] - wsi_ds_names = [p.name for p in vulkan.wsi_device_swapchain.protos] + wsi_s_names = [p.name for p in vulkan.ext_khr_swapchain.protos] + wsi_ds_names = [p.name for p in vulkan.ext_khr_device_swapchain.protos] dbg_rpt_names = [p.name for p in vulkan.debug_report_lunarg.protos] dbg_mrk_names = [p.name for p in vulkan.debug_marker_lunarg.protos] api_names = core_api_names + wsi_s_names + wsi_ds_names + dbg_rpt_names + dbg_mrk_names |
