diff options
| author | Ian Elliott <ianelliott@google.com> | 2015-11-20 14:13:17 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-12-01 10:18:23 -0700 |
| commit | cff001a8790f13cfc4dfc9f9d37c9d05230a3b82 (patch) | |
| tree | d6a58ef7225fc00288d8bfb47443cd6882101b3a /vulkan.py | |
| parent | d3f7dcc6abb811167332db2c5797d9e78ddb4e23 (diff) | |
| download | usermoji-cff001a8790f13cfc4dfc9f9d37c9d05230a3b82.tar.xz | |
layers: Convert most of the layers to the new WSI.
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1048,11 +1048,13 @@ ext_khr_device_swapchain = Extension( Proto("VkResult", "CreateSwapchainKHR", [Param("VkDevice", "device"), Param("const VkSwapchainCreateInfoKHR*", "pCreateInfo"), + Param("const VkAllocationCallbacks*", "pAllocator"), Param("VkSwapchainKHR*", "pSwapchain")]), Proto("void", "DestroySwapchainKHR", [Param("VkDevice", "device"), - Param("VkSwapchainKHR", "swapchain")]), + Param("VkSwapchainKHR", "swapchain"), + Param("const VkAllocationCallbacks*", "pAllocator")]), Proto("VkResult", "GetSwapchainImagesKHR", [Param("VkDevice", "device"), @@ -1065,11 +1067,12 @@ ext_khr_device_swapchain = Extension( Param("VkSwapchainKHR", "swapchain"), Param("uint64_t", "timeout"), Param("VkSemaphore", "semaphore"), + Param("VkFence", "fence"), Param("uint32_t*", "pImageIndex")]), Proto("VkResult", "QueuePresentKHR", [Param("VkQueue", "queue"), - Param("VkPresentInfoKHR*", "pPresentInfo")]), + Param("const VkPresentInfoKHR*", "pPresentInfo")]), ], ) lunarg_debug_report = Extension( |
