LibWeb: Add stub IDL interface for AudioParam

An AudioParam is a fundamental building block in WebAudio as it controls
the value of an individual parameter of an AudioNode, such as volume.
This commit is contained in:
Shannon Booth 2024-04-28 12:26:30 +12:00 committed by Andreas Kling
commit 5ae0ac7b73
Notes: sideshowbarker 2024-07-17 02:28:18 +09:00
7 changed files with 213 additions and 0 deletions

View file

@ -295,6 +295,7 @@ libweb_js_bindings(WebAssembly/Table)
libweb_js_bindings(WebAssembly/WebAssembly NAMESPACE)
libweb_js_bindings(WebAudio/AudioBuffer)
libweb_js_bindings(WebAudio/AudioContext)
libweb_js_bindings(WebAudio/AudioParam)
libweb_js_bindings(WebAudio/BaseAudioContext)
libweb_js_bindings(WebAudio/OfflineAudioContext)
libweb_js_bindings(WebAudio/PeriodicWave)