#[repr(u16)]pub enum CorrectionType {
SplitCombined = 0,
SplitDrefRegular = 1,
SplitDrefComparison = 2,
}Variants§
SplitCombined = 0
A combined image sampler has been split, a new sampler object should be inserted.
SplitDrefRegular = 1
A mixed depth texture / sampler has been duplicated, insert the same object again with a Regular bind type.
SplitDrefComparison = 2
A mixed depth texture / sampler has been duplicated, insert the same object again with a
Comparison bind type.
Trait Implementations§
Source§impl Clone for CorrectionType
impl Clone for CorrectionType
Source§fn clone(&self) -> CorrectionType
fn clone(&self) -> CorrectionType
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 CorrectionType
impl Debug for CorrectionType
Source§impl Hash for CorrectionType
impl Hash for CorrectionType
Source§impl PartialEq for CorrectionType
impl PartialEq for CorrectionType
impl Copy for CorrectionType
impl Eq for CorrectionType
impl StructuralPartialEq for CorrectionType
Auto Trait Implementations§
impl Freeze for CorrectionType
impl RefUnwindSafe for CorrectionType
impl Send for CorrectionType
impl Sync for CorrectionType
impl Unpin for CorrectionType
impl UnwindSafe for CorrectionType
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