vulkan: move fence to core
This commit is contained in:
parent
7e6facf4e3
commit
3ecee1b17f
9 changed files with 89 additions and 91 deletions
6
src/vulkan_core/device.rs
Normal file
6
src/vulkan_core/device.rs
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
use ash::{Device, khr::external_fence_fd};
|
||||
|
||||
pub trait VulkanDeviceInf: Sized {
|
||||
fn device(&self) -> &Device;
|
||||
fn external_fence_fd(&self) -> &external_fence_fd::Device;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue