Trait gfx_phase::ToDepth [] [src]

pub trait ToDepth {
    type Depth: Copy + Debug + PartialOrd;
    fn to_depth(&self) -> Self::Depth;
}

View information that can be transformed into depth.

Associated Types

The type of the depth to convert to.

Required Methods

Convert to depth.

Implementors