Struct ash::vk::StencilOpStateBuilder
source · 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.
Trait Implementations§
source§impl<'a> Deref for StencilOpStateBuilder<'a>
impl<'a> Deref for StencilOpStateBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for StencilOpStateBuilder<'a>
impl<'a> RefUnwindSafe for StencilOpStateBuilder<'a>
impl<'a> Send for StencilOpStateBuilder<'a>
impl<'a> Sync for StencilOpStateBuilder<'a>
impl<'a> Unpin for StencilOpStateBuilder<'a>
impl<'a> UnwindSafe for StencilOpStateBuilder<'a>
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