HomeSort by relevance Sort by last modified time
    Searched refs:elevation (Results 1 - 25 of 43) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/graphics/filters/
DistantLightSource.cpp 43 float elevation = deg2rad(m_elevation); local
44 paintingData.lightVector.setX(cosf(azimuth) * cosf(elevation));
45 paintingData.lightVector.setY(sinf(azimuth) * cosf(elevation));
46 paintingData.lightVector.setZ(sinf(elevation));
62 bool DistantLightSource::setElevation(float elevation)
64 if (m_elevation == elevation)
66 m_elevation = elevation;
74 ts << "[elevation=\"" << elevation() << "\"]";
DistantLightSource.h 33 static PassRefPtr<DistantLightSource> create(float azimuth, float elevation)
35 return adoptRef(new DistantLightSource(azimuth, elevation));
40 float elevation() const { return m_elevation; } function in class:WebCore::DistantLightSource
49 DistantLightSource(float azimuth, float elevation)
52 , m_elevation(elevation)
LightSource.cpp 44 bool LightSource::setElevation(float elevation)
47 return static_cast<DistantLightSource*>(this)->setElevation(elevation);
  /external/webkit/Source/WebCore/svg/
SVGFEDistantLightElement.idl 30 readonly attribute SVGAnimatedNumber elevation;
SVGFEDistantLightElement.cpp 41 return DistantLightSource::create(azimuth(), elevation());
SVGFELightElement.h 51 DECLARE_ANIMATED_NUMBER(Elevation, elevation)
SVGFEDiffuseLightingElement.cpp 110 return lightSource->setElevation(lightElement->elevation());
SVGFELightElement.cpp 40 DEFINE_ANIMATED_NUMBER(SVGFELightElement, SVGNames::elevationAttr, Elevation, elevation)
SVGFESpecularLightingElement.cpp 117 return lightSource->setElevation(lightElement->elevation());
  /external/webkit/Source/WebCore/platform/audio/
HRTFElevation.h 44 // HRTFElevation contains all of the HRTFKernels (one left ear and one right ear per azimuth angle) for a particular elevation.
49 // Loads and returns an HRTFElevation with the given HRTF database subject name and elevation from browser (or WebKit.framework) resources.
52 // Valid values for elevation are -45 -> +90 in 15 degree increments.
53 static PassOwnPtr<HRTFElevation> createForSubject(const String& subjectName, int elevation, double sampleRate);
82 // Given a specific azimuth and elevation angle, returns the left and right HRTFKernel.
84 // Valid values for elevation are -45 -> +90 in 15 degree increments.
86 static bool calculateKernelsForAzimuthElevation(int azimuth, int elevation, double sampleRate, const String& subjectName,
89 // Given a specific azimuth and elevation angle, returns the left and right HRTFKernel in kernelL and kernelR.
92 static bool calculateSymmetricKernelsForAzimuthElevation(int azimuth, int elevation, double sampleRate, const String& subjectName,
95 HRTFElevation(PassOwnPtr<HRTFKernelList> kernelListL, PassOwnPtr<HRTFKernelList> kernelListR, int elevation, double sampleRate
    [all...]
HRTFElevation.cpp 55 bool HRTFElevation::calculateSymmetricKernelsForAzimuthElevation(int azimuth, int elevation, double sampleRate, const String& subjectName,
60 bool success = calculateKernelsForAzimuthElevation(azimuth, elevation, sampleRate, subjectName, kernelL1, kernelR1);
69 success = calculateKernelsForAzimuthElevation(symmetricAzimuth, elevation, sampleRate, subjectName, kernelL2, kernelR2);
80 bool HRTFElevation::calculateKernelsForAzimuthElevation(int azimuth, int elevation, double sampleRate, const String& subjectName,
84 // Valid values for elevation are -45 -> +90 in 15 degree increments.
91 bool isElevationGood = elevation >= -45 && elevation <= 90 && (elevation / 15) * 15 == elevation;
96 // Construct the resource name from the subject name, azimuth, and elevation, for example
    [all...]
EqualPowerPanner.h 38 virtual void pan(double azimuth, double elevation, AudioBus* inputBus, AudioBus* outputBuf, size_t framesToProcess);
Panner.h 56 virtual void pan(double azimuth, double elevation, AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess) = 0;
HRTFDatabase.cpp 59 for (int elevation = MinElevation; elevation <= MaxElevation; elevation += RawElevationAngleSpacing) {
60 OwnPtr<HRTFElevation> hrtfElevation = HRTFElevation::createForSubject("Composite", elevation, sampleRate);
74 j = i; // for last elevation interpolate with itself
HRTFPanner.h 40 virtual void pan(double azimuth, double elevation, AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess);
HRTFPanner.cpp 114 void HRTFPanner::pan(double desiredAzimuth, double elevation, AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess)
198 database->getKernelsFromAzimuthElevation(azimuthBlend, m_azimuthIndex, elevation, kernelL, kernelR, frameDelayL, frameDelayR);
  /external/webkit/Source/WebCore/webaudio/
AudioPannerNode.cpp 107 double elevation; local
108 getAzimuthElevation(&azimuth, &elevation);
109 m_panner->pan(azimuth, elevation, source, destination, framesToProcess);
163 // FIXME: we should cache azimuth and elevation (if possible), so we only re-calculate if a change has been made.
210 // Elevation
211 double elevation = 90.0 - 180.0 * acos(sourceListener.dot(up)) / piDouble; local
214 if (elevation > 90.0)
215 elevation = 180.0 - elevation;
216 else if (elevation < -90.0
    [all...]
  /frameworks/wilhelm/src/itf/
I3DDoppler.c 43 SLmillidegree azimuth, SLmillidegree elevation, SLmillimeter speed)
50 thiz->mVelocitySpherical.mElevation = elevation;
I3DLocation.c 43 SLmillidegree azimuth, SLmillidegree elevation, SLmillimeter distance)
48 (-90000 <= elevation) && (elevation <= 90000) &&
55 thiz->mLocationSpherical.mElevation = elevation;
  /external/chromium/webkit/glue/
webkitclient_impl.cc 308 // Extract the azimuth and elevation from the resource name.
310 int elevation = 0; local
312 sscanf(name, "IRC_Composite_C_R0195_T%3d_P%3d", &azimuth, &elevation);
320 // 0 <= elevation <= 90 (or 315 <= elevation <= 345)
323 elevation <= 90 ? elevation / kAngleSpacing :
324 7 + (elevation - 315) / kAngleSpacing;
  /external/webkit/Source/WebCore/bindings/objc/
DOMCSS.h 140 - (NSString *)elevation;
141 - (void)setElevation:(NSString *)elevation;
DOMCSS.mm 557 - (NSString *)elevation
559 return [self getPropertyValue:@"elevation"];
562 - (void)setElevation:(NSString *)elevation
564 [self setProperty:@"elevation" value:elevation priority:@""];
  /hardware/libhardware/include/hardware/
gps.h 277 /** Elevation of SV in degrees. */
278 float elevation; member in struct:__anon20674
  /frameworks/base/services/jni/
com_android_server_location_GpsLocationProvider.cpp 472 elev[i] = sGpsSvStatus.sv_list[i].elevation;
  /development/ndk/platforms/android-14/include/SLES/
OpenSLES.h     [all...]

Completed in 567 milliseconds

1 2