ivy-vulkan 0.10.3

Low level vulkan abstractions for the Ivy game engine.
1
2
3
4
5
6
use crate::{error::Error, Result};
use ash::Entry;

pub fn create() -> Result<Entry> {
    unsafe { Entry::load().map_err(|_| Error::LibLoading) }
}