1
0
Fork 0
forked from wry/wry

vulkan: abstract over the release sync type

This commit is contained in:
Julian Orth 2026-03-01 21:39:06 +01:00
parent 3ecee1b17f
commit 2ac3519f2d
8 changed files with 166 additions and 137 deletions

View file

@ -27,6 +27,7 @@ use {
pub mod device;
pub mod fence;
pub mod sync;
static VULKAN_ENTRY: Lazy<Result<Entry, Arc<LoadingError>>> =
Lazy::new(|| unsafe { Entry::load() }.map_err(Arc::new));