summaryrefslogtreecommitdiffstats
path: root/WebCore/webaudio/AudioPannerNode.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/webaudio/AudioPannerNode.h')
-rw-r--r--WebCore/webaudio/AudioPannerNode.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/WebCore/webaudio/AudioPannerNode.h b/WebCore/webaudio/AudioPannerNode.h
index 6d0d759..4d49bc8 100644
--- a/WebCore/webaudio/AudioPannerNode.h
+++ b/WebCore/webaudio/AudioPannerNode.h
@@ -46,12 +46,11 @@ namespace WebCore {
class AudioPannerNode : public AudioNode {
public:
+ // These must be defined as in the .idl file and must match those in the Panner class.
enum {
- PASSTHROUGH = 0,
- EQUALPOWER = 1,
- HRTF = 2,
- SOUNDFIELD = 3,
- MATRIXMIX = 4
+ EQUALPOWER = 0,
+ HRTF = 1,
+ SOUNDFIELD = 2,
};
static PassRefPtr<AudioPannerNode> create(AudioContext* context, double sampleRate)