ash/extensions/khr/maintenance3.rs
1//! <https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_maintenance3.html>
2
3use crate::vk;
4
5impl crate::khr::maintenance3::Device {
6 /// <https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkGetDescriptorSetLayoutSupportKHR.html>
7 #[inline]
8 pub unsafe fn get_descriptor_set_layout_support(
9 &self,
10 create_info: &vk::DescriptorSetLayoutCreateInfo<'_>,
11 out: &mut vk::DescriptorSetLayoutSupportKHR<'_>,
12 ) {
13 (self.fp.get_descriptor_set_layout_support_khr)(self.handle, create_info, out);
14 }
15}