diff options
| author | Norbert Nopper <Norbert.Nopper@nxp.com> | 2016-11-25 07:55:13 +0100 |
|---|---|---|
| committer | Mark Lobodzinski <mark@lunarg.com> | 2016-11-29 13:24:05 -0700 |
| commit | 09854fbb01a3c10287b759e88f40e5c05c9be9ba (patch) | |
| tree | 11a85a8261e364b5e0f10155fe6320bf8c769c04 /scripts/vulkan.py | |
| parent | d328f5199e828b2ab80f13d05871f31c1c9d0a96 (diff) | |
| download | usermoji-09854fbb01a3c10287b759e88f40e5c05c9be9ba.tar.xz | |
layers: Complete support for VK_KHR_Display ext
Fixed using display extension only crash.
Added vkGetDisplayPlaneCapabilitiesKHR.
Fixes, that unique objects works for display extension.
Change-Id: I66727a430b9d55bfa40fdddc884f40c91aa29f11
Diffstat (limited to 'scripts/vulkan.py')
| -rw-r--r-- | scripts/vulkan.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vulkan.py b/scripts/vulkan.py index 90007651..5d71f52f 100644 --- a/scripts/vulkan.py +++ b/scripts/vulkan.py @@ -1375,6 +1375,7 @@ win32_wsi_exts = [VK_KHR_win32_surface common_exts = [VK_VERSION_1_0, VK_KHR_surface, VK_KHR_swapchain, + VK_KHR_display, VK_KHR_display_swapchain, ] @@ -1398,8 +1399,7 @@ non_exported_exts = [VK_NV_external_memory_capabilities, # VK_AMD_shader_ballot, # VK_IMG_format_pvrtc, ] -non_android_exts = [VK_KHR_display, - ] + extensions = common_exts extensions_all = non_exported_exts |
