//! use crate::prelude::*; use crate::vk; use alloc::vec::Vec; impl crate::ext::tooling_info::Instance { /// #[inline] pub unsafe fn get_physical_device_tool_properties( &self, physical_device: vk::PhysicalDevice, ) -> VkResult>> { read_into_defaulted_vector(|count, data| { (self.fp.get_physical_device_tool_properties_ext)(physical_device, count, data) }) } }