DeviceV1_0::destroy_event
This commit is contained in:
parent
bcaa563c5b
commit
b9702a2e14
|
@ -265,6 +265,15 @@ pub trait DeviceV1_0 {
|
||||||
.destroy_fence(self.handle(), fence, allocation_callbacks.as_raw_ptr());
|
.destroy_fence(self.handle(), fence, allocation_callbacks.as_raw_ptr());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsafe fn destroy_event(
|
||||||
|
&self,
|
||||||
|
event: vk::Event,
|
||||||
|
allocation_callbacks: Option<&vk::AllocationCallbacks>,
|
||||||
|
) {
|
||||||
|
self.fp_v1_0()
|
||||||
|
.destroy_event(self.handle(), event, allocation_callbacks.as_raw_ptr());
|
||||||
|
}
|
||||||
|
|
||||||
unsafe fn destroy_image(
|
unsafe fn destroy_image(
|
||||||
&self,
|
&self,
|
||||||
image: vk::Image,
|
image: vk::Image,
|
||||||
|
|
Loading…
Reference in a new issue