From fc7827bf057272b60cc2cc3c61c8744833d86961 Mon Sep 17 00:00:00 2001 From: Mike Schuchardt Date: Fri, 23 Jun 2023 12:23:57 -0700 Subject: build: Update to header 1.3.255 - Update known-good - Generate source --- scripts/generate_vulkan_wrapper.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'scripts/generate_vulkan_wrapper.py') diff --git a/scripts/generate_vulkan_wrapper.py b/scripts/generate_vulkan_wrapper.py index af1b53a6..2fec3c04 100755 --- a/scripts/generate_vulkan_wrapper.py +++ b/scripts/generate_vulkan_wrapper.py @@ -700,6 +700,10 @@ VK_KHR_maintenance4 = Extension(name='VK_KHR_maintenance4', version=2, guard=Non VK_KHR_ray_tracing_position_fetch = Extension(name='VK_KHR_ray_tracing_position_fetch', version=1, guard=None, commands=[ ]) +VK_KHR_cooperative_matrix = Extension(name='VK_KHR_cooperative_matrix', version=2, guard=None, commands=[ + Command(name='vkGetPhysicalDeviceCooperativeMatrixPropertiesKHR', dispatch='VkPhysicalDevice'), +]) + VK_EXT_debug_report = Extension(name='VK_EXT_debug_report', version=10, guard=None, commands=[ Command(name='vkCreateDebugReportCallbackEXT', dispatch='VkInstance'), Command(name='vkDestroyDebugReportCallbackEXT', dispatch='VkInstance'), @@ -1826,6 +1830,7 @@ extensions = [ VK_KHR_portability_enumeration, VK_KHR_maintenance4, VK_KHR_ray_tracing_position_fetch, + VK_KHR_cooperative_matrix, VK_EXT_debug_report, VK_NV_glsl_shader, VK_EXT_depth_range_unrestricted, -- cgit v1.2.3