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

  /external/chromium_org/third_party/WebKit/Source/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 32 float specularConstant, float specularExponent, float kernelUnitLengthX,
34 : FELighting(filter, SpecularLighting, lightingColor, surfaceScale, 0, specularConstant, specularExponent, kernelUnitLengthX, kernelUnitLengthY, lightSource)
39 float surfaceScale, float specularConstant, float specularExponent,
42 return adoptRef(new FESpecularLighting(filter, lightingColor, surfaceScale, specularConstant, specularExponent,
89 float FESpecularLighting::specularExponent() const
94 bool FESpecularLighting::setSpecularExponent(float specularExponent)
96 if (m_specularExponent == specularExponent)
98 m_specularExponent = specularExponent;
145 << "specularExponent=\"" << m_specularExponent << "\"]\n";
SpotLightSource.cpp 64 // Optimization for common specularExponent values
66 paintingData.specularExponent = 0;
68 paintingData.specularExponent = 1;
70 paintingData.specularExponent = 2;
91 switch (paintingData.specularExponent) {
162 bool SpotLightSource::setSpecularExponent(float specularExponent)
164 if (m_specularExponent == specularExponent)
166 m_specularExponent = specularExponent;
189 ts << "[specularExponent=\"" << specularExponent() << "\"]";
    [all...]
FESpecularLighting.h 45 float specularExponent() const;
LightSource.h 60 int specularExponent;
FELighting.cpp 41 float diffuseConstant, float specularConstant, float specularExponent,
50 , m_specularExponent(specularExponent)
441 float specularExponent = spotLightSource->specularExponent();
446 return adoptRef(SkLightingImageFilter::CreateSpotLitSpecular(location, target, specularExponent, limitingConeAngle, m_lightingColor.rgb(), m_surfaceScale, m_specularConstant, m_specularExponent, input.get(), &rect));
447 return adoptRef(SkLightingImageFilter::CreateSpotLitDiffuse(location, target, specularExponent, limitingConeAngle, m_lightingColor.rgb(), m_surfaceScale, m_diffuseConstant, input.get(), &rect));
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFESpecularLightingElement.idl 30 readonly attribute SVGAnimatedNumber specularExponent;
SVGFESpotLightElement.idl 33 readonly attribute SVGAnimatedNumber specularExponent;
SVGFELightElement.h 57 DECLARE_ANIMATED_NUMBER(SpecularExponent, specularExponent)
SVGFESpecularLightingElement.h 53 DECLARE_ANIMATED_NUMBER(SpecularExponent, specularExponent)
SVGFELightElement.cpp 44 DEFINE_ANIMATED_NUMBER(SVGFELightElement, SVGNames::specularExponentAttr, SpecularExponent, specularExponent)
56 REGISTER_LOCAL_ANIMATED_PROPERTY(specularExponent)
SVGFESpecularLightingElement.cpp 37 DEFINE_ANIMATED_NUMBER(SVGFESpecularLightingElement, SVGNames::specularExponentAttr, SpecularExponent, specularExponent)
45 REGISTER_LOCAL_ANIMATED_PROPERTY(specularExponent)
  /external/chromium_org/third_party/WebKit/Source/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/include/effects/
SkLightingImageFilter.h 60 const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle,
70 const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle,
  /external/skia/include/effects/
SkLightingImageFilter.h 60 const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle,
70 const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle,
  /external/skia/tests/
ImageFilterTest.cpp 131 SkScalar specularExponent = -1000;
136 location, target, specularExponent, 180,
  /external/chromium_org/third_party/skia/src/effects/
SkLightingImageFilter.cpp 667 SkSpotLight(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle, SkColor color)
671 fSpecularExponent(SkScalarPin(specularExponent, kSpecularExponentMin, kSpecularExponentMax))
722 SkScalar specularExponent() const { return fSpecularExponent; }
742 SkSpotLight(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cosOuterConeAngle, SkScalar cosInnerConeAngle, SkScalar coneScale, const SkPoint3& s, const SkPoint3& color)
746 fSpecularExponent(specularExponent),
    [all...]
  /external/skia/src/effects/
SkLightingImageFilter.cpp 667 SkSpotLight(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle, SkColor color)
671 fSpecularExponent(SkScalarPin(specularExponent, kSpecularExponentMin, kSpecularExponentMax))
722 SkScalar specularExponent() const { return fSpecularExponent; }
742 SkSpotLight(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cosOuterConeAngle, SkScalar cosInnerConeAngle, SkScalar coneScale, const SkPoint3& s, const SkPoint3& color)
746 fSpecularExponent(specularExponent),
    [all...]

Completed in 59 milliseconds