[][src]Struct 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 Copy for ImageLayout[src]

impl PartialEq<ImageLayout> for ImageLayout[src]

impl Ord for ImageLayout[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Eq for ImageLayout[src]

impl PartialOrd<ImageLayout> for ImageLayout[src]

impl Clone for ImageLayout[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for ImageLayout[src]

impl Debug for ImageLayout[src]

impl Hash for ImageLayout[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for ImageLayout

impl Sync for ImageLayout

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]