aboutsummaryrefslogtreecommitdiff
path: root/vulkan.py
diff options
context:
space:
mode:
authorIan Elliott <ianelliott@google.com>2015-11-20 14:13:17 -0700
committerJon Ashburn <jon@lunarg.com>2015-12-01 10:18:23 -0700
commitcff001a8790f13cfc4dfc9f9d37c9d05230a3b82 (patch)
treed6a58ef7225fc00288d8bfb47443cd6882101b3a /vulkan.py
parentd3f7dcc6abb811167332db2c5797d9e78ddb4e23 (diff)
downloadusermoji-cff001a8790f13cfc4dfc9f9d37c9d05230a3b82.tar.xz
layers: Convert most of the layers to the new WSI.
Diffstat (limited to 'vulkan.py')
-rwxr-xr-xvulkan.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/vulkan.py b/vulkan.py
index d9907743..4ac1d9ac 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -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(