lava 0.4.9

Rust wrapper to manipulate Vulkan more conveniently than with bindings.
Documentation
1
2
3
4
5
6
7
8
#[allow(non_camel_case_types)]
pub type c_void = u8;

extern {
    pub fn malloc(size: usize) -> *mut c_void;
    pub fn calloc(nb_items: usize, size: usize) -> *mut c_void;
    pub fn free(ptr: *mut c_void);
}