Enum vulkano::format::ClearValue[][src]

pub enum ClearValue {
    None,
    Float([f32; 4]),
    Int([i32; 4]),
    Uint([u32; 4]),
    Depth(f32),
    Stencil(u32),
    DepthStencil((f32, u32)),
}

Describes a uniform value that will be used to fill an image.

Variants

None

Entry for attachments that aren’t cleared.

Float([f32; 4])

Value for floating-point attachments, including Unorm, Snorm, Sfloat.

Value for integer attachments, including Int.

Uint([u32; 4])

Value for unsigned integer attachments, including Uint.

Depth(f32)

Value for depth attachments.

Stencil(u32)

Value for stencil attachments.

DepthStencil((f32, u32))

Value for depth and stencil attachments.

Trait Implementations

impl Clone for ClearValue[src]

fn clone(&self) -> ClearValue[src]

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Debug for ClearValue[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl From<[f32; 1]> for ClearValue[src]

fn from(val: [f32; 1]) -> ClearValue[src]

Performs the conversion.

impl From<[f32; 2]> for ClearValue[src]

fn from(val: [f32; 2]) -> ClearValue[src]

Performs the conversion.

impl From<[f32; 3]> for ClearValue[src]

fn from(val: [f32; 3]) -> ClearValue[src]

Performs the conversion.

impl From<[f32; 4]> for ClearValue[src]

fn from(val: [f32; 4]) -> ClearValue[src]

Performs the conversion.

impl From<[i32; 1]> for ClearValue[src]

fn from(val: [i32; 1]) -> ClearValue[src]

Performs the conversion.

impl From<[i32; 2]> for ClearValue[src]

fn from(val: [i32; 2]) -> ClearValue[src]

Performs the conversion.

impl From<[i32; 3]> for ClearValue[src]

fn from(val: [i32; 3]) -> ClearValue[src]

Performs the conversion.

impl From<[i32; 4]> for ClearValue[src]

fn from(val: [i32; 4]) -> ClearValue[src]

Performs the conversion.

impl From<[u32; 1]> for ClearValue[src]

fn from(val: [u32; 1]) -> ClearValue[src]

Performs the conversion.

impl From<[u32; 2]> for ClearValue[src]

fn from(val: [u32; 2]) -> ClearValue[src]

Performs the conversion.

impl From<[u32; 3]> for ClearValue[src]

fn from(val: [u32; 3]) -> ClearValue[src]

Performs the conversion.

impl From<[u32; 4]> for ClearValue[src]

fn from(val: [u32; 4]) -> ClearValue[src]

Performs the conversion.

impl From<(f32, u32)> for ClearValue[src]

fn from(val: (f32, u32)) -> ClearValue[src]

Performs the conversion.

impl From<f32> for ClearValue[src]

fn from(val: f32) -> ClearValue[src]

Performs the conversion.

impl From<u32> for ClearValue[src]

fn from(val: u32) -> ClearValue[src]

Performs the conversion.

impl<A> ImageClearValue<ClearValue> for Arc<AttachmentImage<A>>[src]

fn decode(&self, value: ClearValue) -> Option<ClearValue>[src]

impl<A> ImageClearValue<ClearValue> for StorageImage<A> where
    A: MemoryPool
[src]

fn decode(&self, value: ClearValue) -> Option<ClearValue>[src]

impl<W> ImageClearValue<ClearValue> for SwapchainImage<W>[src]

fn decode(&self, value: ClearValue) -> Option<ClearValue>[src]

impl PartialEq<ClearValue> for ClearValue[src]

fn eq(&self, other: &ClearValue) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &ClearValue) -> bool[src]

This method tests for !=.

impl Copy for ClearValue[src]

impl StructuralPartialEq for ClearValue[src]

Auto Trait Implementations

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> Content for T[src]

pub fn ref_from_ptr(*mut c_void, usize) -> Option<*mut T>[src]

Builds a pointer to this type from a raw pointer.

pub fn is_size_suitable(usize) -> bool[src]

Returns true if the size is suitable to store a type like this.

pub fn indiv_size() -> usize[src]

Returns the size of an individual element.

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.