aboutsummaryrefslogtreecommitdiff
path: root/vulkan.py
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-09-14 17:22:16 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-09-17 15:32:11 -0600
commite06f119d4e40f9a1be48457926fe1df342013da7 (patch)
tree6f7760f52a966f6d035f140523ee343016ffb420 /vulkan.py
parenta147d979425f6cb6a5a32f5e6c645f94af3c726b (diff)
downloadusermoji-e06f119d4e40f9a1be48457926fe1df342013da7.tar.xz
bug 14509: Rename Layer and Extension queries
https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14509 https://gitlab.khronos.org/vulkan/vulkan/merge_requests/334
Diffstat (limited to 'vulkan.py')
-rwxr-xr-xvulkan.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/vulkan.py b/vulkan.py
index 4f16ac04..5d8601de 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -276,22 +276,22 @@ core = Extension(
[Param("VkPhysicalDevice", "physicalDevice"),
Param("VkPhysicalDeviceMemoryProperties*", "pMemoryProperties")]),
- Proto("VkResult", "GetGlobalExtensionProperties",
+ Proto("VkResult", "EnumerateInstanceExtensionProperties",
[Param("const char*", "pLayerName"),
Param("uint32_t*", "pCount"),
Param("VkExtensionProperties*", "pProperties")]),
- Proto("VkResult", "GetPhysicalDeviceExtensionProperties",
+ Proto("VkResult", "EnumerateDeviceExtensionProperties",
[Param("VkPhysicalDevice", "physicalDevice"),
Param("const char*", "pLayerName"),
Param("uint32_t*", "pCount"),
Param("VkExtensionProperties*", "pProperties")]),
- Proto("VkResult", "GetGlobalLayerProperties",
+ Proto("VkResult", "EnumerateInstanceLayerProperties",
[Param("uint32_t*", "pCount"),
Param("VkLayerProperties*", "pProperties")]),
- Proto("VkResult", "GetPhysicalDeviceLayerProperties",
+ Proto("VkResult", "EnumerateDeviceLayerProperties",
[Param("VkPhysicalDevice", "physicalDevice"),
Param("uint32_t*", "pCount"),
Param("VkLayerProperties*", "pProperties")]),