Enum vk_sync_fork::ImageLayout [−][src]
pub enum ImageLayout {
Optimal,
General,
GeneralAndPresentation,
}Expand description
Defines a handful of layout options for images.
Rather than a list of all possible image layouts, this reduced list is
correlated with the access types to map to the correct Vulkan layouts.
Optimal is usually preferred.
Variants
Choose the most optimal layout for each usage. Performs layout transitions as appropriate for the access.
Layout accessible by all Vulkan access types on a device - no layout transitions except for presentation
Similar to General, but also allows presentation engines to access it - no layout transitions.
Requires VK_KHR_shared_presentable_image to be enabled, and this can only be used for shared presentable
images (i.e. single-buffered swap chains).
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ImageLayout
impl Send for ImageLayout
impl Sync for ImageLayout
impl Unpin for ImageLayout
impl UnwindSafe for ImageLayout
Blanket Implementations
Mutably borrows from an owned value. Read more