HomeSort by relevance Sort by last modified time
    Searched defs:specularExponent (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
SpotLightSource.h 33 const FloatPoint3D& direction, float specularExponent, float limitingConeAngle)
35 return adoptRef(new SpotLightSource(position, direction, specularExponent, limitingConeAngle));
40 float specularExponent() const { return m_specularExponent; }
60 float specularExponent, float limitingConeAngle)
64 , m_specularExponent(specularExponent)
FESpecularLighting.cpp 34 float specularConstant, float specularExponent, float kernelUnitLengthX,
36 : FELighting(filter, SpecularLighting, lightingColor, surfaceScale, 0, specularConstant, specularExponent, kernelUnitLengthX, kernelUnitLengthY, lightSource)
41 float surfaceScale, float specularConstant, float specularExponent,
44 return adoptRef(new FESpecularLighting(filter, lightingColor, surfaceScale, specularConstant, specularExponent,
91 float FESpecularLighting::specularExponent() const
96 bool FESpecularLighting::setSpecularExponent(float specularExponent)
98 if (m_specularExponent == specularExponent)
100 m_specularExponent = specularExponent;
147 << "specularExponent=\"" << m_specularExponent << "\"]\n";
LightSource.h 59 int specularExponent;
FELighting.cpp 45 float diffuseConstant, float specularConstant, float specularExponent,
54 , m_specularExponent(specularExponent)
446 float specularExponent = spotLightSource->specularExponent();
451 return adoptRef(SkLightingImageFilter::CreateSpotLitSpecular(location, target, specularExponent, limitingConeAngle, m_lightingColor.rgb(), m_surfaceScale, m_specularConstant, m_specularExponent, input.get()));
453 return adoptRef(SkLightingImageFilter::CreateSpotLitDiffuse(location, target, specularExponent, limitingConeAngle, m_lightingColor.rgb(), m_surfaceScale, m_diffuseConstant, input.get()));
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/cpu/arm/filters/
FELightingNEON.h 84 int specularExponent;
143 neonData.coneExponent = getPowerCoefficients(spotLightSource->specularExponent());
144 if (spotLightSource->specularExponent() == 1)
162 neonData.specularExponent = getPowerCoefficients(m_specularExponent);
  /external/chromium_org/third_party/skia/src/effects/
SkLightingImageFilter.cpp 660 SkSpotLight(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle, SkColor color)
664 fSpecularExponent(specularExponent)
705 SkScalar specularExponent() const { return fSpecularExponent; }
788 SkScalar specularExponent, SkScalar cutoffAngle,
792 (SkNEW_ARGS(SkSpotLight, (location, target, specularExponent,
815 SkScalar specularExponent, SkScalar cutoffAngle,
819 (SkNEW_ARGS(SkSpotLight, (location, target, specularExponent, cutoffAngle, lightColor)),
    [all...]
  /external/skia/src/effects/
SkLightingImageFilter.cpp 660 SkSpotLight(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle, SkColor color)
664 fSpecularExponent(specularExponent)
705 SkScalar specularExponent() const { return fSpecularExponent; }
788 SkScalar specularExponent, SkScalar cutoffAngle,
792 (SkNEW_ARGS(SkSpotLight, (location, target, specularExponent,
815 SkScalar specularExponent, SkScalar cutoffAngle,
819 (SkNEW_ARGS(SkSpotLight, (location, target, specularExponent, cutoffAngle, lightColor)),
    [all...]

Completed in 216 milliseconds