#[repr(u32)]pub enum SwrDitherType {
Show 13 variants
SWR_DITHER_NONE = 0,
SWR_DITHER_RECTANGULAR = 1,
SWR_DITHER_TRIANGULAR = 2,
SWR_DITHER_TRIANGULAR_HIGHPASS = 3,
SWR_DITHER_NS = 64,
SWR_DITHER_NS_LIPSHITZ = 65,
SWR_DITHER_NS_F_WEIGHTED = 66,
SWR_DITHER_NS_MODIFIED_E_WEIGHTED = 67,
SWR_DITHER_NS_IMPROVED_E_WEIGHTED = 68,
SWR_DITHER_NS_SHIBATA = 69,
SWR_DITHER_NS_LOW_SHIBATA = 70,
SWR_DITHER_NS_HIGH_SHIBATA = 71,
SWR_DITHER_NB = 72,
}
Variants§
SWR_DITHER_NONE = 0
SWR_DITHER_RECTANGULAR = 1
SWR_DITHER_TRIANGULAR = 2
SWR_DITHER_TRIANGULAR_HIGHPASS = 3
SWR_DITHER_NS = 64
SWR_DITHER_NS_LIPSHITZ = 65
SWR_DITHER_NS_F_WEIGHTED = 66
SWR_DITHER_NS_MODIFIED_E_WEIGHTED = 67
SWR_DITHER_NS_IMPROVED_E_WEIGHTED = 68
SWR_DITHER_NS_SHIBATA = 69
SWR_DITHER_NS_LOW_SHIBATA = 70
SWR_DITHER_NS_HIGH_SHIBATA = 71
SWR_DITHER_NB = 72
Trait Implementations§
Source§impl Clone for SwrDitherType
impl Clone for SwrDitherType
Source§fn clone(&self) -> SwrDitherType
fn clone(&self) -> SwrDitherType
Returns a copy 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 SwrDitherType
impl Debug for SwrDitherType
Source§impl Hash for SwrDitherType
impl Hash for SwrDitherType
Source§impl PartialEq for SwrDitherType
impl PartialEq for SwrDitherType
impl Copy for SwrDitherType
impl Eq for SwrDitherType
impl StructuralPartialEq for SwrDitherType
Auto Trait Implementations§
impl Freeze for SwrDitherType
impl RefUnwindSafe for SwrDitherType
impl Send for SwrDitherType
impl Sync for SwrDitherType
impl Unpin for SwrDitherType
impl UnwindSafe for SwrDitherType
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