| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 /// @domName BiquadFilterNode |
| 8 interface BiquadFilterNode extends AudioNode { |
| 9 |
| 10 static final int ALLPASS = 7; |
| 11 |
| 12 static final int BANDPASS = 2; |
| 13 |
| 14 static final int HIGHPASS = 1; |
| 15 |
| 16 static final int HIGHSHELF = 4; |
| 17 |
| 18 static final int LOWPASS = 0; |
| 19 |
| 20 static final int LOWSHELF = 3; |
| 21 |
| 22 static final int NOTCH = 6; |
| 23 |
| 24 static final int PEAKING = 5; |
| 25 |
| 26 /** @domName BiquadFilterNode.Q */ |
| 27 final AudioParam Q; |
| 28 |
| 29 /** @domName BiquadFilterNode.frequency */ |
| 30 final AudioParam frequency; |
| 31 |
| 32 /** @domName BiquadFilterNode.gain */ |
| 33 final AudioParam gain; |
| 34 |
| 35 /** @domName BiquadFilterNode.type */ |
| 36 int type; |
| 37 |
| 38 /** @domName BiquadFilterNode.getFrequencyResponse */ |
| 39 void getFrequencyResponse(Float32Array frequencyHz, Float32Array magResponse,
Float32Array phaseResponse); |
| 40 } |
| OLD | NEW |