[−][src]Struct gfx_hal::pso::DepthBias
A depth bias allows changing the produced depth values for fragments slightly but consistently. This permits drawing of multiple polygons in the same plane without Z-fighting, such as when trying to draw shadows on a wall.
For details of the algorithm and equations, see the Vulkan spec.
Fields
const_factor: f32
A constant depth value added to each fragment.
clamp: f32
The minimum or maximum depth bias of a fragment.
slope_factor: f32
A constant bias applied to the fragment's slope.
Trait Implementations
impl Clone for DepthBias
[src]
impl Copy for DepthBias
[src]
impl Debug for DepthBias
[src]
impl Default for DepthBias
[src]
impl PartialEq<DepthBias> for DepthBias
[src]
impl StructuralPartialEq for DepthBias
[src]
Auto Trait Implementations
impl RefUnwindSafe for DepthBias
impl Send for DepthBias
impl Sync for DepthBias
impl Unpin for DepthBias
impl UnwindSafe for DepthBias
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>,