diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-14 17:22:16 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-17 15:32:11 -0600 |
| commit | e06f119d4e40f9a1be48457926fe1df342013da7 (patch) | |
| tree | 6f7760f52a966f6d035f140523ee343016ffb420 /vulkan.py | |
| parent | a147d979425f6cb6a5a32f5e6c645f94af3c726b (diff) | |
| download | usermoji-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-x | vulkan.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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")]), |
