[−][src]Enum luminance_front::depth_test::DepthComparison
Depth comparison to perform while depth test. a is the incoming fragment’s depth and b is the
fragment’s depth that is already stored.
Variants
Depth test never succeeds.
Depth test always succeeds.
Depth test succeeds if a == b.
Depth test succeeds if a != b.
Depth test succeeds if a < b.
Depth test succeeds if a <= b.
Depth test succeeds if a > b.
Depth test succeeds if a >= b.
Trait Implementations
impl Clone for DepthComparison[src]
fn clone(&self) -> DepthComparison[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for DepthComparison[src]
impl Debug for DepthComparison[src]
impl Eq for DepthComparison[src]
impl PartialEq<DepthComparison> for DepthComparison[src]
Auto Trait Implementations
impl RefUnwindSafe for DepthComparison
impl Send for DepthComparison
impl Sync for DepthComparison
impl Unpin for DepthComparison
impl UnwindSafe for DepthComparison
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,