| Index: third_party/WebKit/Source/modules/webaudio/PannerOptions.idl
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/PannerOptions.idl b/third_party/WebKit/Source/modules/webaudio/PannerOptions.idl
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..795c0c8ff93f322332a1eb1f5778dc9e62fe77b8
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/modules/webaudio/PannerOptions.idl
|
| @@ -0,0 +1,22 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +dictionary PannerOptions : AudioNodeOptions {
|
| + PanningModelType panningModel;
|
| + DistanceModelType distanceModel;
|
| +
|
| + float positionX;
|
| + float positionY;
|
| + float positionZ;
|
| + float orientationX;
|
| + float orientationY;
|
| + float orientationZ;
|
| +
|
| + float refDistance;
|
| + float maxDistance;
|
| + float rolloffFactor;
|
| + float coneInnerAngle;
|
| + float coneOuterAngle;
|
| + float coneOuterGain;
|
| +};
|
|
|