pub struct VkPipelineDepthStencilStateCreateInfo {
pub flags: VkPipelineDepthStencilStateCreateFlags,
pub depth_test_enable: bool,
pub depth_write_enable: bool,
pub depth_compare_op: VkCompareOp,
pub depth_bounds_test_enable: bool,
pub stencil_test_enable: bool,
pub front: VkStencilOpState,
pub back: VkStencilOpState,
pub min_depth_bounds: f32,
pub max_depth_bounds: f32,
}
Expand description
Wrapper for VkPipelineDepthStencilStateCreateInfo.
Fields§
§flags: VkPipelineDepthStencilStateCreateFlags
§depth_test_enable: bool
§depth_write_enable: bool
§depth_compare_op: VkCompareOp
§depth_bounds_test_enable: bool
§stencil_test_enable: bool
§front: VkStencilOpState
§back: VkStencilOpState
§min_depth_bounds: f32
§max_depth_bounds: f32
Trait Implementations§
Source§impl Clone for VkPipelineDepthStencilStateCreateInfo
impl Clone for VkPipelineDepthStencilStateCreateInfo
Source§fn clone(&self) -> VkPipelineDepthStencilStateCreateInfo
fn clone(&self) -> VkPipelineDepthStencilStateCreateInfo
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 Default for VkPipelineDepthStencilStateCreateInfo
impl Default for VkPipelineDepthStencilStateCreateInfo
Source§fn default() -> VkPipelineDepthStencilStateCreateInfo
fn default() -> VkPipelineDepthStencilStateCreateInfo
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VkPipelineDepthStencilStateCreateInfo
impl RefUnwindSafe for VkPipelineDepthStencilStateCreateInfo
impl Send for VkPipelineDepthStencilStateCreateInfo
impl Sync for VkPipelineDepthStencilStateCreateInfo
impl Unpin for VkPipelineDepthStencilStateCreateInfo
impl UnwindSafe for VkPipelineDepthStencilStateCreateInfo
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