[][src]Struct gfx_hal::pso::DepthStencilDesc

pub struct DepthStencilDesc {
    pub depth: Option<DepthTest>,
    pub depth_bounds: bool,
    pub stencil: Option<StencilTest>,
}

PSO depth-stencil target descriptor.

Fields

depth: Option<DepthTest>

Optional depth testing/writing.

depth_bounds: bool

Enable depth bounds testing.

stencil: Option<StencilTest>

Stencil test/write.

Methods

impl DepthStencilDesc[src]

pub fn uses_depth(&self) -> bool[src]

Returns true if the descriptor assumes the depth attachment.

pub fn uses_stencil(&self) -> bool[src]

Returns true if the descriptor assumes the stencil attachment.

Trait Implementations

impl Clone for DepthStencilDesc[src]

impl Copy for DepthStencilDesc[src]

impl Default for DepthStencilDesc[src]

impl Eq for DepthStencilDesc[src]

impl PartialEq<DepthStencilDesc> for DepthStencilDesc[src]

impl Debug for DepthStencilDesc[src]

impl Hash for DepthStencilDesc[src]

impl StructuralPartialEq for DepthStencilDesc[src]

impl StructuralEq for DepthStencilDesc[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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