| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // See https://webaudio.github.io/web-audio-api/#panneroptions | 5 // See https://webaudio.github.io/web-audio-api/#panneroptions |
| 6 dictionary PannerOptions : AudioNodeOptions { | 6 dictionary PannerOptions : AudioNodeOptions { |
| 7 PanningModelType panningModel; | 7 PanningModelType panningModel; |
| 8 DistanceModelType distanceModel; | 8 DistanceModelType distanceModel; |
| 9 | 9 |
| 10 float positionX; | 10 float positionX; |
| 11 float positionY; | 11 float positionY; |
| 12 float positionZ; | 12 float positionZ; |
| 13 float orientationX; | 13 float orientationX; |
| 14 float orientationY; | 14 float orientationY; |
| 15 float orientationZ; | 15 float orientationZ; |
| 16 | 16 |
| 17 float refDistance; | 17 double refDistance; |
| 18 float maxDistance; | 18 double maxDistance; |
| 19 float rolloffFactor; | 19 double rolloffFactor; |
| 20 float coneInnerAngle; | 20 double coneInnerAngle; |
| 21 float coneOuterAngle; | 21 double coneOuterAngle; |
| 22 float coneOuterGain; | 22 double coneOuterGain; |
| 23 }; | 23 }; |
| OLD | NEW |