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 Debug for DepthBiasState
impl Debug for DepthBiasState
Source§impl<'de> Deserialize<'de> for DepthBiasState
impl<'de> Deserialize<'de> for DepthBiasState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DepthBiasState
impl RefUnwindSafe for DepthBiasState
impl Send for DepthBiasState
impl Sync for DepthBiasState
impl Unpin for DepthBiasState
impl UnsafeUnpin 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