Skip to content

Commit 22c6a55

Browse files
committed
Merge pull request w3ctag#11 from domenic/patch-3
Remove redundant suggestions
2 parents 77c145e + 7228cf5 commit 22c6a55

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

2013/07/WebAudio.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -360,19 +360,6 @@ That leaves a few open issues for which we don't currently have suggestions but
360360

361361
Several questions arise in reading the examples:
362362

363-
* Why doesn't `context.createBufferSource()` take an optional buffer as a an argument? It would turn repetitive code like:
364-
365-
```js
366-
source1 = context.createBufferSource();
367-
source1.buffer = someBuffer;
368-
```
369-
370-
into:
371-
372-
```js
373-
source1 = context.createBufferSource({ buffer: someBuffer });
374-
```
375-
376363
* Why doesn't `AudioNode::connect()` return the passed `AudioNode destination`? It would enable a much terser chained style in some cases. Janessa Det provides the example of:
377364
378365
```js
@@ -394,7 +381,6 @@ Several questions arise in reading the examples:
394381
.connect(destination);
395382
```
396383
397-
* Why don't the `create*()` methods (and their eventual ctor explanations) support parameters for connecting in/out? It seems that in most graph setup, this is one of the most common actions, and it's overly verbose today.
398384
* Where does `param` come from in example 4.5.4? It's not marked constructable as per 4.5 and there doesn't appear to be a `create()` method for it documented anywhere. It's a ghost ;-)
399385
* What language are the examples in Section 11 written in? Can it be executed?
400386
* `OfflineAudioContext` is terribly named. In a browser, "offline" means something very different. `BulkProcessingContext` might be better.

0 commit comments

Comments
 (0)