Lines Matching refs:f32

73     static const f32 VOLUME_MIN;
74 static const f32 VOLUME_DEFAULT;
75 static const f32 VOLUME_MAX;
76 static const f32 PAN_LEFT;
77 static const f32 PAN_CENTER;
78 static const f32 PAN_RIGHT;
79 static const f32 SPAN_FRONT;
80 static const f32 SPAN_CENTER;
81 static const f32 SPAN_REAR;
82 static const f32 CUTOFF_FREQ_MIN;
83 static const f32 CUTOFF_FREQ_MAX;
84 static const f32 BIQUAD_VALUE_MIN;
85 static const f32 BIQUAD_VALUE_MAX;
86 static const f32 SEND_MIN;
87 static const f32 SEND_MAX;
150 f32 GetVolume() const { return m_Volume; } in GetVolume()
151 void SetVolume( f32 volume );
153 f32 GetPitch() const { return m_Pitch; } in GetPitch()
154 void SetPitch( f32 pitch );
159 f32 GetPan() const { return m_Pan; } in GetPan()
160 void SetPan( f32 pan );
162 f32 GetSurroundPan() const { return m_SurroundPan; } in GetSurroundPan()
163 void SetSurroundPan( f32 span );
165 f32 GetLpfFreq() const { return m_LpfFreq; } in GetLpfFreq()
166 void SetLpfFreq( f32 lpfFreq );
169 f32 GetBiquadValue() const { return m_BiquadValue; } in GetBiquadValue()
170 void SetBiquadFilter( int type, f32 value );
188 f32 GetMainSend() const { return m_MainSend; } in GetMainSend()
189 void SetMainSend( f32 send );
191 f32 GetFxSend( AuxBus bus ) const { return m_FxSend[ bus ]; } in GetFxSend()
192 void SetFxSend( AuxBus bus, f32 send );
277 f32 m_Volume;
278 f32 m_Pitch;
281 f32 m_Pan;
282 f32 m_SurroundPan;
283 f32 m_LpfFreq;
284 f32 m_BiquadValue;
287 f32 m_MainSend;
288 f32 m_FxSend[ AUX_BUS_NUM ];
318 static void GetDebugMixParam( f32& pan, f32& span, nw::snd::internal::MixParam& mix );