mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-15 23:09:05 +00:00
LibWeb: Implement BaseAudioContext.createBuffer
This is a simple factory function which effectively just calls the AudioBuffer constructor.
This commit is contained in:
parent
17ae65cedc
commit
71ccd8ad25
Notes:
sideshowbarker
2024-07-17 06:35:16 +09:00
Author: https://github.com/shannonbooth
Commit: 71ccd8ad25
Pull-request: https://github.com/SerenityOS/serenity/pull/24447
6 changed files with 19 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
#import <DOM/EventTarget.idl>
|
||||
#import <DOM/EventHandler.idl>
|
||||
#import <WebAudio/AudioBuffer.idl>
|
||||
#import <WebAudio/DynamicsCompressorNode.idl>
|
||||
#import <WebAudio/OscillatorNode.idl>
|
||||
|
||||
|
@ -24,7 +25,7 @@ interface BaseAudioContext : EventTarget {
|
|||
|
||||
[FIXME] AnalyserNode createAnalyser ();
|
||||
[FIXME] BiquadFilterNode createBiquadFilter ();
|
||||
[FIXME] AudioBuffer createBuffer (unsigned long numberOfChannels, unsigned long length, float sampleRate);
|
||||
AudioBuffer createBuffer(unsigned long numberOfChannels, unsigned long length, float sampleRate);
|
||||
[FIXME] AudioBufferSourceNode createBufferSource ();
|
||||
[FIXME] ChannelMergerNode createChannelMerger (optional unsigned long numberOfInputs = 6);
|
||||
[FIXME] ChannelSplitterNode createChannelSplitter (optional unsigned long numberOfOutputs = 6);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue