Struct rafx_api::RafxDepthState [−][src]
pub struct RafxDepthState {}Show 14 fields
pub depth_test_enable: bool, pub depth_write_enable: bool, pub depth_compare_op: RafxCompareOp, pub stencil_test_enable: bool, pub stencil_read_mask: u8, pub stencil_write_mask: u8, pub front_depth_fail_op: RafxStencilOp, pub front_stencil_compare_op: RafxCompareOp, pub front_stencil_fail_op: RafxStencilOp, pub front_stencil_pass_op: RafxStencilOp, pub back_depth_fail_op: RafxStencilOp, pub back_stencil_compare_op: RafxCompareOp, pub back_stencil_fail_op: RafxStencilOp, pub back_stencil_pass_op: RafxStencilOp,
Expand description
Affects depth testing and stencil usage. Commonly used to enable “Z-buffering”.
Fields
depth_test_enable: bool
depth_write_enable: bool
depth_compare_op: RafxCompareOp
stencil_test_enable: bool
stencil_read_mask: u8
stencil_write_mask: u8
front_depth_fail_op: RafxStencilOp
front_stencil_compare_op: RafxCompareOp
front_stencil_fail_op: RafxStencilOp
front_stencil_pass_op: RafxStencilOp
back_depth_fail_op: RafxStencilOp
back_stencil_compare_op: RafxCompareOp
back_stencil_fail_op: RafxStencilOp
back_stencil_pass_op: RafxStencilOp
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for RafxDepthState
impl Send for RafxDepthState
impl Sync for RafxDepthState
impl Unpin for RafxDepthState
impl UnwindSafe for RafxDepthState
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more