kazan 0.3.9+1.4.359

Vulkan bindings for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod buffer_collection;
pub mod external_memory;
pub mod external_semaphore;
pub mod imagepipe_surface;
pub(super) mod defs {
    use super::*;
    pub use buffer_collection::defs::*;
    pub use external_memory::defs::*;
    pub use external_semaphore::defs::*;
    pub use imagepipe_surface::defs::*;
}
#[cfg(feature = "ffi")]
pub(super) mod ffi {
    pub use super::buffer_collection::ffi::*;
    pub use super::external_memory::ffi::*;
    pub use super::external_semaphore::ffi::*;
    pub use super::imagepipe_surface::ffi::*;
}