#[repr(C)]pub struct DepthBiasInfoEXT {
pub s_type: StructureType,
pub p_next: *const c_void,
pub depth_bias_constant_factor: f32,
pub depth_bias_clamp: f32,
pub depth_bias_slope_factor: f32,
}Expand description
VkDepthBiasInfoEXT
Provided by VK_EXT_depth_bias_control.
§Extended By
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DEPTH_BIAS_INFO_EXT.
p_next: *const c_voidOptional, may be null.
depth_bias_constant_factor: f32§depth_bias_clamp: f32§depth_bias_slope_factor: f32Implementations§
Source§impl DepthBiasInfoEXT
impl DepthBiasInfoEXT
Sourcepub fn builder<'a>() -> DepthBiasInfoEXTBuilder<'a>
pub fn builder<'a>() -> DepthBiasInfoEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DepthBiasInfoEXT
impl Clone for DepthBiasInfoEXT
Source§fn clone(&self) -> DepthBiasInfoEXT
fn clone(&self) -> DepthBiasInfoEXT
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 DepthBiasInfoEXT
impl Debug for DepthBiasInfoEXT
Source§impl Default for DepthBiasInfoEXT
impl Default for DepthBiasInfoEXT
impl Copy for DepthBiasInfoEXT
Auto Trait Implementations§
impl Freeze for DepthBiasInfoEXT
impl RefUnwindSafe for DepthBiasInfoEXT
impl !Send for DepthBiasInfoEXT
impl !Sync for DepthBiasInfoEXT
impl Unpin for DepthBiasInfoEXT
impl UnsafeUnpin for DepthBiasInfoEXT
impl UnwindSafe for DepthBiasInfoEXT
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