#[repr(C)]pub enum DspLowPassSimple {
Cutoff = 0,
Unused = 1,
}
Expand description
Parameter types for the FMOD_DSP_TYPE_LOWPASS_SIMPLE filter.
This is a very simple low pass filter, based on two single-pole RC time-constant modules.
The emphasis is on speed rather than accuracy, so this should not be used for task requiring
critical filtering.
Used with Dsp::set_parameter
and
Dsp::get_parameter
.
Variants§
Cutoff = 0
Lowpass Cutoff frequency in hz. 10.0 to 22000.0. Default = 5000.0
Unused = 1
Useless enum
Trait Implementations§
Source§impl Clone for DspLowPassSimple
impl Clone for DspLowPassSimple
Source§fn clone(&self) -> DspLowPassSimple
fn clone(&self) -> DspLowPassSimple
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 DspLowPassSimple
impl Debug for DspLowPassSimple
Source§impl PartialEq for DspLowPassSimple
impl PartialEq for DspLowPassSimple
Source§impl PartialOrd for DspLowPassSimple
impl PartialOrd for DspLowPassSimple
impl Copy for DspLowPassSimple
impl StructuralPartialEq for DspLowPassSimple
Auto Trait Implementations§
impl Freeze for DspLowPassSimple
impl RefUnwindSafe for DspLowPassSimple
impl Send for DspLowPassSimple
impl Sync for DspLowPassSimple
impl Unpin for DspLowPassSimple
impl UnwindSafe for DspLowPassSimple
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