Home
last modified time | relevance | path

Searched refs:m_Sustain (Results 1 – 6 of 6) sorted by relevance

/dports/audio/spiralsynth/SpiralSynth-0.1.7/SpiralSound/
H A DEnvelope.C24 m_Sustain(1.0f), in Envelope()
89 temp=(1-nt)+(m_Sustain*nt); in GetOutput()
99 temp=m_Sustain*(1-nt); in GetOutput()
103 temp=m_Sustain; in GetOutput()
133 m_Sustain=RandFloat(); in Randomise()
140 s>>o.m_Attack>>o.m_Decay>>o.m_Sustain>>o.m_Release>>o.m_Volume;
146 s<<o.m_Attack<<" "<<o.m_Decay<<" "<<o.m_Sustain<<" "<<o.m_Release<<" "<<o.m_Volume<<" ";
H A DEnvelope.h39 void SetSustain(float s) {m_Sustain=s;} in SetSustain()
44 float GetSustain() {return m_Sustain;} in GetSustain()
58 float m_Sustain; variable
/dports/audio/spiralsynthmodular/spiralmodular-0.2.2/SpiralSound/Plugins/EnvelopePlugin/
H A DEnvelopePlugin.C54 m_Sustain(1.0f), in EnvelopePlugin()
71 m_AudioCH->Register("Sustain",&m_Sustain); in EnvelopePlugin()
144 temp=(1-nt)+(m_Sustain*nt); in Execute()
154 temp=m_Sustain*(1-nt); in Execute()
158 temp=m_Sustain; in Execute()
191 s<<m_Version<<" "<<m_Attack<<" "<<m_Decay<<" "<<m_Sustain<<" "<< in StreamOut()
199 s>>m_Attack>>m_Decay>>m_Sustain>>m_Release>>m_Volume>>m_TrigThresh; in StreamIn()
H A DEnvelopePluginGUI.C78 m_Sustain->user_data ((void*)(this)); in EnvelopePluginGUI()
79 m_Sustain->type (FL_VERT_NICE_SLIDER); in EnvelopePluginGUI()
80 m_Sustain->selection_color (Info->GUI_COLOUR); in EnvelopePluginGUI()
81 m_Sustain->box (FL_PLASTIC_DOWN_BOX); in EnvelopePluginGUI()
82 m_Sustain->labelsize (10); in EnvelopePluginGUI()
83 m_Sustain->maximum (1); in EnvelopePluginGUI()
84 m_Sustain->step (0.01); in EnvelopePluginGUI()
85 m_Sustain->value (0.0); in EnvelopePluginGUI()
87 m_CtlGroup->add (m_Sustain); in EnvelopePluginGUI()
215 m_Sustain->value (1.0f - val); in UpdateValues()
[all …]
H A DEnvelopePlugin.h41 float GetSustain() { return m_Sustain; } in Fl_PortButton()
54 float m_Sustain; in Fl_PortButton()
H A DEnvelopePluginGUI.h39 Fl_Slider *m_Thresh, *m_Attack, *m_Decay, *m_Sustain, *m_Release, *m_Volume; variable