| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, Google Inc. All rights reserved. | 2 * Copyright (C) 2010, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 AudioParam* positionZ() const { return m_positionZ; }; | 219 AudioParam* positionZ() const { return m_positionZ; }; |
| 220 | 220 |
| 221 AudioParam* orientationX() const { return m_orientationX; }; | 221 AudioParam* orientationX() const { return m_orientationX; }; |
| 222 AudioParam* orientationY() const { return m_orientationY; }; | 222 AudioParam* orientationY() const { return m_orientationY; }; |
| 223 AudioParam* orientationZ() const { return m_orientationZ; }; | 223 AudioParam* orientationZ() const { return m_orientationZ; }; |
| 224 | 224 |
| 225 String panningModel() const; | 225 String panningModel() const; |
| 226 void setPanningModel(const String&); | 226 void setPanningModel(const String&); |
| 227 void setPosition(float x, float y, float z); | 227 void setPosition(float x, float y, float z); |
| 228 void setOrientation(float x, float y, float z); | 228 void setOrientation(float x, float y, float z); |
| 229 void setVelocity(float x, float y, float z); | |
| 230 String distanceModel() const; | 229 String distanceModel() const; |
| 231 void setDistanceModel(const String&); | 230 void setDistanceModel(const String&); |
| 232 double refDistance() const; | 231 double refDistance() const; |
| 233 void setRefDistance(double); | 232 void setRefDistance(double); |
| 234 double maxDistance() const; | 233 double maxDistance() const; |
| 235 void setMaxDistance(double); | 234 void setMaxDistance(double); |
| 236 double rolloffFactor() const; | 235 double rolloffFactor() const; |
| 237 void setRolloffFactor(double); | 236 void setRolloffFactor(double); |
| 238 double coneInnerAngle() const; | 237 double coneInnerAngle() const; |
| 239 void setConeInnerAngle(double); | 238 void setConeInnerAngle(double); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 250 Member<AudioParam> m_positionZ; | 249 Member<AudioParam> m_positionZ; |
| 251 | 250 |
| 252 Member<AudioParam> m_orientationX; | 251 Member<AudioParam> m_orientationX; |
| 253 Member<AudioParam> m_orientationY; | 252 Member<AudioParam> m_orientationY; |
| 254 Member<AudioParam> m_orientationZ; | 253 Member<AudioParam> m_orientationZ; |
| 255 }; | 254 }; |
| 256 | 255 |
| 257 } // namespace blink | 256 } // namespace blink |
| 258 | 257 |
| 259 #endif // PannerNode_h | 258 #endif // PannerNode_h |
| OLD | NEW |