fmsynth_set_pitch_bend method
\brief Set pitch bend state.
@param fm Handle to an FM synth instance.
@param value value is parsed using MIDI rules. Value range is 0, 0x3fff
. Initial state is 0x2000 (centered).
Range for pitch bend is two semitones.
Implementation
void fmsynth_set_pitch_bend(
ffi.Pointer<fmsynth> fm,
int value,
) {
return _fmsynth_set_pitch_bend(
fm,
value,
);
}