pub struct DepthBiasState {
pub constant: i32,
pub slope_scale: f32,
pub clamp: f32,
}Fields§
§constant: i32Constant depth biasing factor, in basic units of the depth format.
slope_scale: f32Slope depth biasing factor.
clamp: f32Depth bias clamp value (absolute).
Trait Implementations§
Source§impl Clone for DepthBiasState
impl Clone for DepthBiasState
Source§fn clone(&self) -> DepthBiasState
fn clone(&self) -> DepthBiasState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DepthBiasState
impl Debug for DepthBiasState
Source§impl Default for DepthBiasState
impl Default for DepthBiasState
Source§fn default() -> DepthBiasState
fn default() -> DepthBiasState
Returns the “default value” for a type. Read more
Source§impl PartialEq for DepthBiasState
impl PartialEq for DepthBiasState
impl Copy for DepthBiasState
impl StructuralPartialEq for DepthBiasState
Auto Trait Implementations§
impl Freeze for DepthBiasState
impl RefUnwindSafe for DepthBiasState
impl Send for DepthBiasState
impl Sync for DepthBiasState
impl Unpin for DepthBiasState
impl UnwindSafe for DepthBiasState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more