| 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 AudioParam* positionZ() const { return m_positionZ; }; | 220 AudioParam* positionZ() const { return m_positionZ; }; |
| 221 | 221 |
| 222 AudioParam* orientationX() const { return m_orientationX; }; | 222 AudioParam* orientationX() const { return m_orientationX; }; |
| 223 AudioParam* orientationY() const { return m_orientationY; }; | 223 AudioParam* orientationY() const { return m_orientationY; }; |
| 224 AudioParam* orientationZ() const { return m_orientationZ; }; | 224 AudioParam* orientationZ() const { return m_orientationZ; }; |
| 225 | 225 |
| 226 String panningModel() const; | 226 String panningModel() const; |
| 227 void setPanningModel(const String&); | 227 void setPanningModel(const String&); |
| 228 void setPosition(float x, float y, float z); | 228 void setPosition(float x, float y, float z); |
| 229 void setOrientation(float x, float y, float z); | 229 void setOrientation(float x, float y, float z); |
| 230 void setVelocity(float x, float y, float z); | |
| 231 String distanceModel() const; | 230 String distanceModel() const; |
| 232 void setDistanceModel(const String&); | 231 void setDistanceModel(const String&); |
| 233 double refDistance() const; | 232 double refDistance() const; |
| 234 void setRefDistance(double); | 233 void setRefDistance(double); |
| 235 double maxDistance() const; | 234 double maxDistance() const; |
| 236 void setMaxDistance(double); | 235 void setMaxDistance(double); |
| 237 double rolloffFactor() const; | 236 double rolloffFactor() const; |
| 238 void setRolloffFactor(double); | 237 void setRolloffFactor(double); |
| 239 double coneInnerAngle() const; | 238 double coneInnerAngle() const; |
| 240 void setConeInnerAngle(double); | 239 void setConeInnerAngle(double); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 251 Member<AudioParam> m_positionZ; | 250 Member<AudioParam> m_positionZ; |
| 252 | 251 |
| 253 Member<AudioParam> m_orientationX; | 252 Member<AudioParam> m_orientationX; |
| 254 Member<AudioParam> m_orientationY; | 253 Member<AudioParam> m_orientationY; |
| 255 Member<AudioParam> m_orientationZ; | 254 Member<AudioParam> m_orientationZ; |
| 256 }; | 255 }; |
| 257 | 256 |
| 258 } // namespace blink | 257 } // namespace blink |
| 259 | 258 |
| 260 #endif // PannerNode_h | 259 #endif // PannerNode_h |
| OLD | NEW |