pub enum Fence {
TimelineSemaphore(Semaphore),
FencePool {
last_completed: FenceValue,
active: Vec<(FenceValue, Fence)>,
free: Vec<Fence>,
},
}
Available on crate feature
vulkan
only.Variants§
TimelineSemaphore(Semaphore)
FencePool
Fields
§
last_completed: FenceValue
§
active: Vec<(FenceValue, Fence)>
The pending fence values have to be ascending.