Enum sierra::ImageViewKind[][src]

pub enum ImageViewKind {
    D1,
    D2,
    D3,
    Cube,
}

Kind of image view.

Variants

D1

One dimensional image view

D2

Two dimensional imave view.

D3

Three dimensional image view.

Cube

Cube view. 6 image layers are treated as sides of a cube. Cube views can be sampled by direction vector resulting in sample at intersection of cube and a ray with origin in center of cube and direction of that vector

Trait Implementations

impl Clone for ImageViewKind[src]

impl Copy for ImageViewKind[src]

impl Debug for ImageViewKind[src]

impl Eq for ImageViewKind[src]

impl Hash for ImageViewKind[src]

impl PartialEq<ImageViewKind> for ImageViewKind[src]

impl StructuralEq for ImageViewKind[src]

impl StructuralPartialEq for ImageViewKind[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.