| 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..312ee747e5eb26b2d789ebc05f3a81b70d31f316
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/modules/webaudio/PannerOptions.idl
|
| @@ -0,0 +1,23 @@
|
| +// 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.
|
| +
|
| +// See https://webaudio.github.io/web-audio-api/#panneroptions
|
| +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;
|
| +};
|
|
|