Struct vk_sync_fork::GlobalBarrier [−][src]
pub struct GlobalBarrier<'a> {
pub previous_accesses: &'a [AccessType],
pub next_accesses: &'a [AccessType],
}Expand description
Global barriers define a set of accesses on multiple resources at once.
If a buffer or image doesn’t require a queue ownership transfer, or an image
doesn’t require a layout transition (e.g. you’re using one of the
ImageLayout::General* layouts) then a global barrier should be preferred.
Simply define the previous and next access types of resources affected.
Fields
previous_accesses: &'a [AccessType]next_accesses: &'a [AccessType]Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<'a> RefUnwindSafe for GlobalBarrier<'a>
impl<'a> Send for GlobalBarrier<'a>
impl<'a> Sync for GlobalBarrier<'a>
impl<'a> Unpin for GlobalBarrier<'a>
impl<'a> UnwindSafe for GlobalBarrier<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more
