| 702 | // utilities and common code |
| 703 | |
| 704 | double _getNormalizedParameterValue(const uint32_t index, const double plain) |
| 705 | { |
| 706 | const ParameterRanges& ranges(fPlugin.getParameterRanges(index)); |
| 707 | return ranges.getFixedAndNormalizedValue(plain); |
| 708 | } |
| 709 | |
| 710 | void _setNormalizedPluginParameterValue(const uint32_t index, const double normalized) |
| 711 | { |
no test coverage detected