[][src]Struct ash_tray::ash::vk::ImageLayout

#[repr(transparent)]
pub struct ImageLayout(_);

Methods

impl ImageLayout[src]

pub fn from_raw(x: i32) -> Self[src]

pub fn as_raw(self) -> i32[src]

impl ImageLayout[src]

pub const UNDEFINED: Self[src]

Implicit layout an image is when its contents are undefined due to various reasons (e.g. right after creation)

pub const GENERAL: Self[src]

General layout when image can be used for any kind of access

pub const COLOR_ATTACHMENT_OPTIMAL: Self[src]

Optimal layout when image is only used for color attachment read/write

pub const DEPTH_STENCIL_ATTACHMENT_OPTIMAL: Self[src]

Optimal layout when image is only used for depth/stencil attachment read/write

pub const DEPTH_STENCIL_READ_ONLY_OPTIMAL: Self[src]

Optimal layout when image is used for read only depth/stencil attachment and shader access

pub const SHADER_READ_ONLY_OPTIMAL: Self[src]

Optimal layout when image is used for read only shader access

pub const TRANSFER_SRC_OPTIMAL: Self[src]

Optimal layout when image is used only as source of transfer operations

pub const TRANSFER_DST_OPTIMAL: Self[src]

Optimal layout when image is used only as destination of transfer operations

pub const PREINITIALIZED: Self[src]

Initial layout used when the data is populated by the CPU

impl ImageLayout[src]

Generated from 'VK_KHR_swapchain'

pub const PRESENT_SRC_KHR: Self[src]

impl ImageLayout[src]

Generated from 'VK_KHR_shared_presentable_image'

pub const SHARED_PRESENT_KHR: Self[src]

impl ImageLayout[src]

Generated from 'VK_NV_shading_rate_image'

impl ImageLayout[src]

Generated from 'VK_EXT_fragment_density_map'

impl ImageLayout[src]

Generated from 'VK_VERSION_1_1'

impl ImageLayout[src]

Generated from 'VK_VERSION_1_1'

Trait Implementations

impl Eq for ImageLayout[src]

impl Default for ImageLayout[src]

impl Clone for ImageLayout[src]

impl PartialOrd<ImageLayout> for ImageLayout[src]

impl PartialEq<ImageLayout> for ImageLayout[src]

impl Ord for ImageLayout[src]

impl Copy for ImageLayout[src]

impl Hash for ImageLayout[src]

impl Debug for ImageLayout[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]