#[repr(C)]pub enum DspITLowPass {
Cutoff = 0,
Resonance = 1,
}
Expand description
Parameter types for the FMOD_DSP_TYPE_ITLOWPASS filter.
This is different to the default FMOD_DSP_TYPE_ITLOWPASS filter in that it uses a different
quality algorithm and is the filter used to produce the correct sounding playback in .IT files.
FMOD Ex’s .IT playback uses this filter.
Used with Dsp::set_parameter
and
Dsp::get_parameter
Variants§
Cutoff = 0
Lowpass Cutoff frequency in hz. 1.0 to 22000.0. Default = 5000.0
Resonance = 1
Lowpass resonance Q value. 0.0 to 127.0. Default = 1.0.
Trait Implementations§
Source§impl Clone for DspITLowPass
impl Clone for DspITLowPass
Source§fn clone(&self) -> DspITLowPass
fn clone(&self) -> DspITLowPass
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 DspITLowPass
impl Debug for DspITLowPass
Source§impl PartialEq for DspITLowPass
impl PartialEq for DspITLowPass
Source§impl PartialOrd for DspITLowPass
impl PartialOrd for DspITLowPass
impl Copy for DspITLowPass
impl StructuralPartialEq for DspITLowPass
Auto Trait Implementations§
impl Freeze for DspITLowPass
impl RefUnwindSafe for DspITLowPass
impl Send for DspITLowPass
impl Sync for DspITLowPass
impl Unpin for DspITLowPass
impl UnwindSafe for DspITLowPass
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