| 67 | } |
| 68 | |
| 69 | void AudioController::setMasterGain( float gainDb ) |
| 70 | { |
| 71 | float gainLinear = audio::decibelToLinear( gainDb ); |
| 72 | mMasterGain->getParam()->applyRamp( gainLinear, 0.3f ); |
| 73 | } |
| 74 | |
| 75 | float AudioController::getMasterGain() const |
| 76 | { |
no test coverage detected