ma_waveform_config_init function

ma_waveform_config ma_waveform_config_init(
  1. ma_format format,
  2. Dartma_uint32 channels,
  3. Dartma_uint32 sampleRate,
  4. ma_waveform_type type,
  5. double amplitude,
  6. double frequency,
)

Implementation

ma_waveform_config ma_waveform_config_init(
  ma_format format,
  Dartma_uint32 channels,
  Dartma_uint32 sampleRate,
  ma_waveform_type type,
  double amplitude,
  double frequency,
) => _ma_waveform_config_init(
  format.value,
  channels,
  sampleRate,
  type.value,
  amplitude,
  frequency,
);