[][src]Enum dxplr::d3d12::DepthStencilViewDesc

pub enum DepthStencilViewDesc {
    Texture1D {
        format: Format,
        flags: Option<DSVFlags>,
        mip_slice: u32,
    },
    Texture1DArray {
        format: Format,
        flags: Option<DSVFlags>,
        mip_slice: u32,
        first_array_slice: u32,
        array_size: u32,
    },
    Texture2D {
        format: Format,
        flags: Option<DSVFlags>,
        mip_slice: u32,
    },
    Texture2DArray {
        format: Format,
        flags: Option<DSVFlags>,
        mip_slice: u32,
        first_array_slice: u32,
        array_size: u32,
    },
    Texture2DMS {
        format: Format,
        flags: Option<DSVFlags>,
    },
    Texture2DMSArray {
        format: Format,
        flags: Option<DSVFlags>,
        first_array_slice: u32,
        array_size: u32,
    },
}

Variants

Texture1D

Fields of Texture1D

format: Formatflags: Option<DSVFlags>mip_slice: u32
Texture1DArray

Fields of Texture1DArray

format: Formatflags: Option<DSVFlags>mip_slice: u32first_array_slice: u32array_size: u32
Texture2D

Fields of Texture2D

format: Formatflags: Option<DSVFlags>mip_slice: u32
Texture2DArray

Fields of Texture2DArray

format: Formatflags: Option<DSVFlags>mip_slice: u32first_array_slice: u32array_size: u32
Texture2DMS

Fields of Texture2DMS

format: Formatflags: Option<DSVFlags>
Texture2DMSArray

Fields of Texture2DMSArray

format: Formatflags: Option<DSVFlags>first_array_slice: u32array_size: u32

Trait Implementations

impl Clone for DepthStencilViewDesc[src]

impl Debug for DepthStencilViewDesc[src]

Auto Trait Implementations

Blanket Implementations

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> 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]