fmsynth_set_pitch_bend method

void fmsynth_set_pitch_bend(
  1. Pointer<fmsynth> fm,
  2. int value
)

\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,
  );
}