//! use crate::vk; impl crate::khr::dynamic_rendering_local_read::Device { /// #[inline] pub unsafe fn cmd_set_rendering_attachment_locations( &self, command_buffer: vk::CommandBuffer, location_info: &vk::RenderingAttachmentLocationInfoKHR<'_>, ) { (self.fp.cmd_set_rendering_attachment_locations_khr)(command_buffer, location_info) } /// #[inline] pub unsafe fn cmd_set_rendering_input_attachment_indices( &self, command_buffer: vk::CommandBuffer, location_info: &vk::RenderingInputAttachmentIndexInfoKHR<'_>, ) { (self.fp.cmd_set_rendering_input_attachment_indices_khr)(command_buffer, location_info) } }