aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/vulkan/vulkan_extension_inspection.hpp
diff options
context:
space:
mode:
authorJon Leech <[email protected]>2024-10-25 06:46:48 -0700
committerJon Leech <[email protected]>2024-10-25 06:46:48 -0700
commit8dc2d710cb7335b89eae3210625a93938053dd3f (patch)
tree5e67a3b6c39b54d2c95b48a41e4b0b3efed0c194 /include/vulkan/vulkan_extension_inspection.hpp
parente271cfd4809ed133cadc6c3de7903e59628b3d8a (diff)
downloadVulkan-Headers-8dc2d710cb7335b89eae3210625a93938053dd3f.tar.gz
Vulkan-Headers-8dc2d710cb7335b89eae3210625a93938053dd3f.zip
Update for Vulkan-Docs 1.3.300update-300
Diffstat (limited to 'include/vulkan/vulkan_extension_inspection.hpp')
-rw-r--r--include/vulkan/vulkan_extension_inspection.hpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/include/vulkan/vulkan_extension_inspection.hpp b/include/vulkan/vulkan_extension_inspection.hpp
index 3b158f8..73fb83d 100644
--- a/include/vulkan/vulkan_extension_inspection.hpp
+++ b/include/vulkan/vulkan_extension_inspection.hpp
@@ -453,7 +453,8 @@ namespace VULKAN_HPP_NAMESPACE
"VK_NV_ray_tracing_validation",
"VK_EXT_device_generated_commands",
"VK_MESA_image_alignment_control",
- "VK_EXT_depth_clamp_control"
+ "VK_EXT_depth_clamp_control",
+ "VK_NV_cooperative_matrix2"
};
return deviceExtensions;
}
@@ -2360,7 +2361,12 @@ namespace VULKAN_HPP_NAMESPACE
{ {
"VK_KHR_get_physical_device_properties2",
} } },
- { "VK_VERSION_1_1", { {} } } } }
+ { "VK_VERSION_1_1", { {} } } } },
+ { "VK_NV_cooperative_matrix2",
+ { { "VK_VERSION_1_0",
+ { {
+ "VK_KHR_cooperative_matrix",
+ } } } } }
};
auto depIt = dependencies.find( extension );
return ( depIt != dependencies.end() ) ? depIt->second : noDependencies;
@@ -3139,7 +3145,7 @@ namespace VULKAN_HPP_NAMESPACE
( extension == "VK_KHR_maintenance7" ) || ( extension == "VK_NV_shader_atomic_float16_vector" ) ||
( extension == "VK_EXT_shader_replicated_composites" ) || ( extension == "VK_NV_ray_tracing_validation" ) ||
( extension == "VK_EXT_device_generated_commands" ) || ( extension == "VK_MESA_image_alignment_control" ) ||
- ( extension == "VK_EXT_depth_clamp_control" );
+ ( extension == "VK_EXT_depth_clamp_control" ) || ( extension == "VK_NV_cooperative_matrix2" );
}
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & extension )