LibWeb: Add BaseAudioContext.createConstantSource() factory method

This commit is contained in:
Tim Ledbetter 2025-01-02 10:25:21 +00:00 committed by Andreas Kling
commit 6cab972248
Notes: github-actions[bot] 2025-01-03 10:14:24 +00:00
3 changed files with 9 additions and 1 deletions

View file

@ -36,7 +36,7 @@ interface BaseAudioContext : EventTarget {
AudioBufferSourceNode createBufferSource ();
ChannelMergerNode createChannelMerger (optional unsigned long numberOfInputs = 6);
ChannelSplitterNode createChannelSplitter (optional unsigned long numberOfOutputs = 6);
[FIXME] ConstantSourceNode createConstantSource ();
ConstantSourceNode createConstantSource ();
[FIXME] ConvolverNode createConvolver ();
[FIXME] DelayNode createDelay (optional double maxDelayTime = 1.0);
DynamicsCompressorNode createDynamicsCompressor();