Implement destroy buffer view

This commit is contained in:
Kim Christensen 2018-03-30 23:27:25 +02:00
parent 30e77503af
commit 901a45449b

View file

@ -1204,6 +1204,18 @@ pub trait DeviceV1_0 {
} }
} }
unsafe fn destroy_buffer_view(
&self,
buffer_view: vk::BufferView,
allocation_callbacks: Option<&vk::AllocationCallbacks>,
) {
self.fp_v1_0().destroy_buffer_view(
self.handle(),
buffer_view,
allocation_callbacks.as_raw_ptr(),
);
}
unsafe fn create_image_view( unsafe fn create_image_view(
&self, &self,
create_info: &vk::ImageViewCreateInfo, create_info: &vk::ImageViewCreateInfo,