Struct ash::vk::StencilOpStateBuilder
source · #[repr(transparent)]pub struct StencilOpStateBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> StencilOpStateBuilder<'a>
impl<'a> StencilOpStateBuilder<'a>
pub fn fail_op(self, fail_op: StencilOp) -> Self
pub fn pass_op(self, pass_op: StencilOp) -> Self
pub fn depth_fail_op(self, depth_fail_op: StencilOp) -> Self
pub fn compare_op(self, compare_op: CompareOp) -> Self
pub fn compare_mask(self, compare_mask: u32) -> Self
pub fn write_mask(self, write_mask: u32) -> Self
pub fn reference(self, reference: u32) -> Self
sourcepub fn build(self) -> StencilOpState
pub fn build(self) -> StencilOpState
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.