phobos 0.10.0

Fast, powerful Vulkan abstraction library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Provides utilities dealing with Vulkan synchronization outside the scope of the
//! pass graph.
//!
//! - The [`fence`] module provides a wrapper around `VkFence` objects, used for CPU-GPU sync,
//! as well as an implementation for [`Future`](std::future::Future) for them.
//! - The [`semaphore`] module provides a simple wrapper around `VkSemaphore` objects, used for GPU-GPU sync.
//! - The [`execution_manager`] module abstracts away vulkan queues and synchronizes access to them by using the
//! [`domain`](crate::domain) system. Most of the time, submissions should go through here.
//! - [`submit_batch`] provides a utility to chain [`Semaphore`](crate::Semaphore)s together and submit them all
//! as one batch.

pub mod domain;
pub mod execution_manager;
pub mod fence;
pub mod semaphore;
pub mod submit_batch;