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§
Optimal
Choose the most optimal layout for each usage. Performs layout transitions as appropriate for the access.
General
Layout accessible by all Vulkan access types on a device - no layout transitions except for presentation
GeneralAndPresentation
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§
Source§impl Clone for ImageLayout
impl Clone for ImageLayout
Source§fn clone(&self) -> ImageLayout
fn clone(&self) -> ImageLayout
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ImageLayout
impl Debug for ImageLayout
Source§impl Default for ImageLayout
impl Default for ImageLayout
Source§impl PartialEq for ImageLayout
impl PartialEq for ImageLayout
impl Copy for ImageLayout
impl StructuralPartialEq for ImageLayout
Auto Trait Implementations§
impl Freeze for ImageLayout
impl RefUnwindSafe for ImageLayout
impl Send for ImageLayout
impl Sync for ImageLayout
impl Unpin for ImageLayout
impl UnwindSafe for ImageLayout
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more