UpdateSound method
Implementation
void UpdateSound(
SoundD sound,
List<int> data,
num sampleCount,
) => run(
() => 'UpdateSound($sound, data: ${data.length}, sampleCount: $sampleCount)',
() => _refUpdateSound(sound,
(p) => rl.Audio.UpdateSound(
_refSound1(sound).ref,
refListShort(data).cast(),
sampleCount.toInt(),
),
),
);